@salutejs/plasma-web 1.583.0-canary.1991.15252784001.0 → 1.583.0-canary.1992.15255012441.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/Accordion/Accordion.d.ts +10 -9
- package/components/Attach/Attach.d.ts +159 -158
- package/components/Autocomplete/Autocomplete.d.ts +345 -344
- package/components/Avatar/Avatar.d.ts +47 -46
- package/components/AvatarGroup/AvatarGroup.d.ts +2 -1
- package/components/Badge/Badge.d.ts +41 -40
- package/components/Breadcrumbs/Breadcrumbs.d.ts +4 -3
- package/components/Button/Button.d.ts +36 -35
- package/components/ButtonGroup/ButtonGroup.d.ts +4 -0
- package/components/Carousel/Carousel.d.ts +3 -2
- package/components/Cell/Cell.d.ts +20 -19
- package/components/Checkbox/Checkbox.d.ts +1 -1
- package/components/Chip/Chip.d.ts +1 -0
- package/components/ChipGroup/ChipGroup.d.ts +1 -0
- package/components/Combobox/Combobox.d.ts +953 -953
- package/components/Combobox/Legacy/Combobox.d.ts +37 -36
- package/components/Counter/Counter.d.ts +1 -0
- package/components/DatePicker/DatePicker.d.ts +54 -53
- package/components/Divider/Divider.d.ts +1 -0
- package/components/Drawer/Drawer.d.ts +19 -18
- package/components/Dropdown/Dropdown.d.ts +52 -52
- package/components/Dropdown/components/DropdownItem.d.ts +14 -14
- package/components/Dropzone/Dropzone.d.ts +16 -15
- package/components/Editable/Editable.d.ts +1 -0
- package/components/EmptyState/EmptyState.d.ts +1 -0
- package/components/Flow/Flow.d.ts +2 -1
- package/components/Grid/Grid.d.ts +1 -0
- package/components/IconButton/IconButton.d.ts +36 -35
- package/components/Image/Image.d.ts +4 -3
- package/components/Indicator/Indicator.d.ts +1 -0
- package/components/Link/Link.d.ts +1 -0
- package/components/LinkButton/LinkButton.d.ts +9 -8
- package/components/Mask/Mask.d.ts +225 -224
- package/components/Note/Note.d.ts +12 -11
- package/components/NumberFormat/NumberFormat.d.ts +1 -1
- package/components/NumberInput/NumberInput.d.ts +39 -38
- package/components/Pagination/Pagination.d.ts +1 -0
- package/components/Popover/Popover.d.ts +1 -0
- package/components/Price/Price.d.ts +1 -0
- package/components/Progress/Progress.d.ts +1 -0
- package/components/Radiobox/Radiobox.d.ts +1 -1
- package/components/Range/Range.d.ts +106 -105
- package/components/Rating/Rating.d.ts +14 -13
- package/components/Segment/Segment.d.ts +9 -8
- package/components/Select/Select.d.ts +244 -244
- package/components/Sheet/Sheet.d.ts +1 -0
- package/components/Skeleton/Skeleton.d.ts +5 -4
- package/components/Slider/Slider.d.ts +105 -96
- package/components/Steps/Steps.d.ts +1 -0
- package/components/Switch/Switch.d.ts +1 -1
- package/components/Table/Table.d.ts +1 -0
- package/components/Tabs/TabItem.d.ts +14 -14
- package/components/Tabs/Tabs.d.ts +7 -5
- package/components/TextArea/TextArea.d.ts +206 -205
- package/components/TextArea/index.d.ts +4 -4
- package/components/TextField/TextField.d.ts +269 -261
- package/components/TextFieldGroup/TextFieldGroup.d.ts +13 -12
- package/components/Toast/Toast.d.ts +1 -0
- package/components/Tokens/Colors/Colors.styles.d.ts +26 -25
- package/components/Tokens/Typography/Typography.styles.d.ts +24 -23
- package/components/Toolbar/Toolbar.d.ts +6 -5
- package/components/Tree/Tree.d.ts +1 -0
- package/components/Typography/Old/index.d.ts +37 -36
- package/components/Typography/Typography.d.ts +205 -204
- package/mixins/index.d.ts +2 -1
- package/package.json +12 -12
@@ -1,289 +1,290 @@
|
|
1
|
+
/// <reference types="react" />
|
1
2
|
export declare const BodyM: import("react").FunctionComponent<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
|
2
3
|
size: {
|
3
4
|
m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
4
5
|
};
|
5
6
|
}> & (({
|
6
|
-
noWrap?: boolean;
|
7
|
-
breakWord?: boolean;
|
8
|
-
color?: string;
|
9
|
-
size?: string;
|
10
|
-
isNumeric?: boolean;
|
11
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
12
|
-
noWrap?: boolean;
|
13
|
-
breakWord?: boolean;
|
14
|
-
color?: string;
|
15
|
-
size?: string;
|
16
|
-
isNumeric?: boolean;
|
17
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
7
|
+
noWrap?: boolean | undefined;
|
8
|
+
breakWord?: boolean | undefined;
|
9
|
+
color?: string | undefined;
|
10
|
+
size?: string | undefined;
|
11
|
+
isNumeric?: boolean | undefined;
|
12
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
13
|
+
noWrap?: boolean | undefined;
|
14
|
+
breakWord?: boolean | undefined;
|
15
|
+
color?: string | undefined;
|
16
|
+
size?: string | undefined;
|
17
|
+
isNumeric?: boolean | undefined;
|
18
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
18
19
|
export declare const BodyL: import("react").FunctionComponent<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
|
19
20
|
size: {
|
20
21
|
l: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
21
22
|
};
|
22
23
|
}> & (({
|
23
|
-
noWrap?: boolean;
|
24
|
-
breakWord?: boolean;
|
25
|
-
color?: string;
|
26
|
-
size?: string;
|
27
|
-
isNumeric?: boolean;
|
28
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
29
|
-
noWrap?: boolean;
|
30
|
-
breakWord?: boolean;
|
31
|
-
color?: string;
|
32
|
-
size?: string;
|
33
|
-
isNumeric?: boolean;
|
34
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
24
|
+
noWrap?: boolean | undefined;
|
25
|
+
breakWord?: boolean | undefined;
|
26
|
+
color?: string | undefined;
|
27
|
+
size?: string | undefined;
|
28
|
+
isNumeric?: boolean | undefined;
|
29
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
30
|
+
noWrap?: boolean | undefined;
|
31
|
+
breakWord?: boolean | undefined;
|
32
|
+
color?: string | undefined;
|
33
|
+
size?: string | undefined;
|
34
|
+
isNumeric?: boolean | undefined;
|
35
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
35
36
|
export declare const BodyS: import("react").FunctionComponent<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
|
36
37
|
size: {
|
37
38
|
s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
38
39
|
};
|
39
40
|
}> & (({
|
40
|
-
noWrap?: boolean;
|
41
|
-
breakWord?: boolean;
|
42
|
-
color?: string;
|
43
|
-
size?: string;
|
44
|
-
isNumeric?: boolean;
|
45
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
46
|
-
noWrap?: boolean;
|
47
|
-
breakWord?: boolean;
|
48
|
-
color?: string;
|
49
|
-
size?: string;
|
50
|
-
isNumeric?: boolean;
|
51
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
41
|
+
noWrap?: boolean | undefined;
|
42
|
+
breakWord?: boolean | undefined;
|
43
|
+
color?: string | undefined;
|
44
|
+
size?: string | undefined;
|
45
|
+
isNumeric?: boolean | undefined;
|
46
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
47
|
+
noWrap?: boolean | undefined;
|
48
|
+
breakWord?: boolean | undefined;
|
49
|
+
color?: string | undefined;
|
50
|
+
size?: string | undefined;
|
51
|
+
isNumeric?: boolean | undefined;
|
52
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
52
53
|
export declare const BodyXS: import("react").FunctionComponent<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
|
53
54
|
size: {
|
54
55
|
xs: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
55
56
|
};
|
56
57
|
}> & (({
|
57
|
-
noWrap?: boolean;
|
58
|
-
breakWord?: boolean;
|
59
|
-
color?: string;
|
60
|
-
size?: string;
|
61
|
-
isNumeric?: boolean;
|
62
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
63
|
-
noWrap?: boolean;
|
64
|
-
breakWord?: boolean;
|
65
|
-
color?: string;
|
66
|
-
size?: string;
|
67
|
-
isNumeric?: boolean;
|
68
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
58
|
+
noWrap?: boolean | undefined;
|
59
|
+
breakWord?: boolean | undefined;
|
60
|
+
color?: string | undefined;
|
61
|
+
size?: string | undefined;
|
62
|
+
isNumeric?: boolean | undefined;
|
63
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
64
|
+
noWrap?: boolean | undefined;
|
65
|
+
breakWord?: boolean | undefined;
|
66
|
+
color?: string | undefined;
|
67
|
+
size?: string | undefined;
|
68
|
+
isNumeric?: boolean | undefined;
|
69
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
69
70
|
export declare const BodyXXS: import("react").FunctionComponent<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
|
70
71
|
size: {
|
71
72
|
xxs: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
72
73
|
};
|
73
74
|
}> & (({
|
74
|
-
noWrap?: boolean;
|
75
|
-
breakWord?: boolean;
|
76
|
-
color?: string;
|
77
|
-
size?: string;
|
78
|
-
isNumeric?: boolean;
|
79
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
80
|
-
noWrap?: boolean;
|
81
|
-
breakWord?: boolean;
|
82
|
-
color?: string;
|
83
|
-
size?: string;
|
84
|
-
isNumeric?: boolean;
|
85
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
75
|
+
noWrap?: boolean | undefined;
|
76
|
+
breakWord?: boolean | undefined;
|
77
|
+
color?: string | undefined;
|
78
|
+
size?: string | undefined;
|
79
|
+
isNumeric?: boolean | undefined;
|
80
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
81
|
+
noWrap?: boolean | undefined;
|
82
|
+
breakWord?: boolean | undefined;
|
83
|
+
color?: string | undefined;
|
84
|
+
size?: string | undefined;
|
85
|
+
isNumeric?: boolean | undefined;
|
86
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
86
87
|
export declare const DsplM: import("react").FunctionComponent<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
|
87
88
|
size: {
|
88
89
|
m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
89
90
|
};
|
90
91
|
}> & (({
|
91
|
-
noWrap?: boolean;
|
92
|
-
breakWord?: boolean;
|
93
|
-
color?: string;
|
94
|
-
size?: string;
|
95
|
-
isNumeric?: boolean;
|
96
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
97
|
-
noWrap?: boolean;
|
98
|
-
breakWord?: boolean;
|
99
|
-
color?: string;
|
100
|
-
size?: string;
|
101
|
-
isNumeric?: boolean;
|
102
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
92
|
+
noWrap?: boolean | undefined;
|
93
|
+
breakWord?: boolean | undefined;
|
94
|
+
color?: string | undefined;
|
95
|
+
size?: string | undefined;
|
96
|
+
isNumeric?: boolean | undefined;
|
97
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
98
|
+
noWrap?: boolean | undefined;
|
99
|
+
breakWord?: boolean | undefined;
|
100
|
+
color?: string | undefined;
|
101
|
+
size?: string | undefined;
|
102
|
+
isNumeric?: boolean | undefined;
|
103
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
103
104
|
export declare const DsplL: import("react").FunctionComponent<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
|
104
105
|
size: {
|
105
106
|
l: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
106
107
|
};
|
107
108
|
}> & (({
|
108
|
-
noWrap?: boolean;
|
109
|
-
breakWord?: boolean;
|
110
|
-
color?: string;
|
111
|
-
size?: string;
|
112
|
-
isNumeric?: boolean;
|
113
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
114
|
-
noWrap?: boolean;
|
115
|
-
breakWord?: boolean;
|
116
|
-
color?: string;
|
117
|
-
size?: string;
|
118
|
-
isNumeric?: boolean;
|
119
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
109
|
+
noWrap?: boolean | undefined;
|
110
|
+
breakWord?: boolean | undefined;
|
111
|
+
color?: string | undefined;
|
112
|
+
size?: string | undefined;
|
113
|
+
isNumeric?: boolean | undefined;
|
114
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
115
|
+
noWrap?: boolean | undefined;
|
116
|
+
breakWord?: boolean | undefined;
|
117
|
+
color?: string | undefined;
|
118
|
+
size?: string | undefined;
|
119
|
+
isNumeric?: boolean | undefined;
|
120
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
120
121
|
export declare const DsplS: import("react").FunctionComponent<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
|
121
122
|
size: {
|
122
123
|
s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
123
124
|
};
|
124
125
|
}> & (({
|
125
|
-
noWrap?: boolean;
|
126
|
-
breakWord?: boolean;
|
127
|
-
color?: string;
|
128
|
-
size?: string;
|
129
|
-
isNumeric?: boolean;
|
130
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
131
|
-
noWrap?: boolean;
|
132
|
-
breakWord?: boolean;
|
133
|
-
color?: string;
|
134
|
-
size?: string;
|
135
|
-
isNumeric?: boolean;
|
136
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
126
|
+
noWrap?: boolean | undefined;
|
127
|
+
breakWord?: boolean | undefined;
|
128
|
+
color?: string | undefined;
|
129
|
+
size?: string | undefined;
|
130
|
+
isNumeric?: boolean | undefined;
|
131
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
132
|
+
noWrap?: boolean | undefined;
|
133
|
+
breakWord?: boolean | undefined;
|
134
|
+
color?: string | undefined;
|
135
|
+
size?: string | undefined;
|
136
|
+
isNumeric?: boolean | undefined;
|
137
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
137
138
|
export declare const H1: import("react").FunctionComponent<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
|
138
139
|
size: {
|
139
140
|
h1: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
140
141
|
};
|
141
142
|
}> & (({
|
142
|
-
noWrap?: boolean;
|
143
|
-
breakWord?: boolean;
|
144
|
-
color?: string;
|
145
|
-
size?: string;
|
146
|
-
isNumeric?: boolean;
|
147
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
148
|
-
noWrap?: boolean;
|
149
|
-
breakWord?: boolean;
|
150
|
-
color?: string;
|
151
|
-
size?: string;
|
152
|
-
isNumeric?: boolean;
|
153
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
143
|
+
noWrap?: boolean | undefined;
|
144
|
+
breakWord?: boolean | undefined;
|
145
|
+
color?: string | undefined;
|
146
|
+
size?: string | undefined;
|
147
|
+
isNumeric?: boolean | undefined;
|
148
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
149
|
+
noWrap?: boolean | undefined;
|
150
|
+
breakWord?: boolean | undefined;
|
151
|
+
color?: string | undefined;
|
152
|
+
size?: string | undefined;
|
153
|
+
isNumeric?: boolean | undefined;
|
154
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
154
155
|
export declare const H2: import("react").FunctionComponent<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
|
155
156
|
size: {
|
156
157
|
h2: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
157
158
|
};
|
158
159
|
}> & (({
|
159
|
-
noWrap?: boolean;
|
160
|
-
breakWord?: boolean;
|
161
|
-
color?: string;
|
162
|
-
size?: string;
|
163
|
-
isNumeric?: boolean;
|
164
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
165
|
-
noWrap?: boolean;
|
166
|
-
breakWord?: boolean;
|
167
|
-
color?: string;
|
168
|
-
size?: string;
|
169
|
-
isNumeric?: boolean;
|
170
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
160
|
+
noWrap?: boolean | undefined;
|
161
|
+
breakWord?: boolean | undefined;
|
162
|
+
color?: string | undefined;
|
163
|
+
size?: string | undefined;
|
164
|
+
isNumeric?: boolean | undefined;
|
165
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
166
|
+
noWrap?: boolean | undefined;
|
167
|
+
breakWord?: boolean | undefined;
|
168
|
+
color?: string | undefined;
|
169
|
+
size?: string | undefined;
|
170
|
+
isNumeric?: boolean | undefined;
|
171
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
171
172
|
export declare const H3: import("react").FunctionComponent<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
|
172
173
|
size: {
|
173
174
|
h3: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
174
175
|
};
|
175
176
|
}> & (({
|
176
|
-
noWrap?: boolean;
|
177
|
-
breakWord?: boolean;
|
178
|
-
color?: string;
|
179
|
-
size?: string;
|
180
|
-
isNumeric?: boolean;
|
181
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
182
|
-
noWrap?: boolean;
|
183
|
-
breakWord?: boolean;
|
184
|
-
color?: string;
|
185
|
-
size?: string;
|
186
|
-
isNumeric?: boolean;
|
187
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
177
|
+
noWrap?: boolean | undefined;
|
178
|
+
breakWord?: boolean | undefined;
|
179
|
+
color?: string | undefined;
|
180
|
+
size?: string | undefined;
|
181
|
+
isNumeric?: boolean | undefined;
|
182
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
183
|
+
noWrap?: boolean | undefined;
|
184
|
+
breakWord?: boolean | undefined;
|
185
|
+
color?: string | undefined;
|
186
|
+
size?: string | undefined;
|
187
|
+
isNumeric?: boolean | undefined;
|
188
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
188
189
|
export declare const H4: import("react").FunctionComponent<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
|
189
190
|
size: {
|
190
191
|
h4: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
191
192
|
};
|
192
193
|
}> & (({
|
193
|
-
noWrap?: boolean;
|
194
|
-
breakWord?: boolean;
|
195
|
-
color?: string;
|
196
|
-
size?: string;
|
197
|
-
isNumeric?: boolean;
|
198
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
199
|
-
noWrap?: boolean;
|
200
|
-
breakWord?: boolean;
|
201
|
-
color?: string;
|
202
|
-
size?: string;
|
203
|
-
isNumeric?: boolean;
|
204
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
194
|
+
noWrap?: boolean | undefined;
|
195
|
+
breakWord?: boolean | undefined;
|
196
|
+
color?: string | undefined;
|
197
|
+
size?: string | undefined;
|
198
|
+
isNumeric?: boolean | undefined;
|
199
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
200
|
+
noWrap?: boolean | undefined;
|
201
|
+
breakWord?: boolean | undefined;
|
202
|
+
color?: string | undefined;
|
203
|
+
size?: string | undefined;
|
204
|
+
isNumeric?: boolean | undefined;
|
205
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
205
206
|
export declare const H5: import("react").FunctionComponent<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
|
206
207
|
size: {
|
207
208
|
h5: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
208
209
|
};
|
209
210
|
}> & (({
|
210
|
-
noWrap?: boolean;
|
211
|
-
breakWord?: boolean;
|
212
|
-
color?: string;
|
213
|
-
size?: string;
|
214
|
-
isNumeric?: boolean;
|
215
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
216
|
-
noWrap?: boolean;
|
217
|
-
breakWord?: boolean;
|
218
|
-
color?: string;
|
219
|
-
size?: string;
|
220
|
-
isNumeric?: boolean;
|
221
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
211
|
+
noWrap?: boolean | undefined;
|
212
|
+
breakWord?: boolean | undefined;
|
213
|
+
color?: string | undefined;
|
214
|
+
size?: string | undefined;
|
215
|
+
isNumeric?: boolean | undefined;
|
216
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
217
|
+
noWrap?: boolean | undefined;
|
218
|
+
breakWord?: boolean | undefined;
|
219
|
+
color?: string | undefined;
|
220
|
+
size?: string | undefined;
|
221
|
+
isNumeric?: boolean | undefined;
|
222
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
222
223
|
export declare const TextM: import("react").FunctionComponent<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
|
223
224
|
size: {
|
224
225
|
m: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
225
226
|
};
|
226
227
|
}> & (({
|
227
|
-
noWrap?: boolean;
|
228
|
-
breakWord?: boolean;
|
229
|
-
color?: string;
|
230
|
-
size?: string;
|
231
|
-
isNumeric?: boolean;
|
232
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
233
|
-
noWrap?: boolean;
|
234
|
-
breakWord?: boolean;
|
235
|
-
color?: string;
|
236
|
-
size?: string;
|
237
|
-
isNumeric?: boolean;
|
238
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
228
|
+
noWrap?: boolean | undefined;
|
229
|
+
breakWord?: boolean | undefined;
|
230
|
+
color?: string | undefined;
|
231
|
+
size?: string | undefined;
|
232
|
+
isNumeric?: boolean | undefined;
|
233
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
234
|
+
noWrap?: boolean | undefined;
|
235
|
+
breakWord?: boolean | undefined;
|
236
|
+
color?: string | undefined;
|
237
|
+
size?: string | undefined;
|
238
|
+
isNumeric?: boolean | undefined;
|
239
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
239
240
|
export declare const TextL: import("react").FunctionComponent<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
|
240
241
|
size: {
|
241
242
|
l: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
242
243
|
};
|
243
244
|
}> & (({
|
244
|
-
noWrap?: boolean;
|
245
|
-
breakWord?: boolean;
|
246
|
-
color?: string;
|
247
|
-
size?: string;
|
248
|
-
isNumeric?: boolean;
|
249
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
250
|
-
noWrap?: boolean;
|
251
|
-
breakWord?: boolean;
|
252
|
-
color?: string;
|
253
|
-
size?: string;
|
254
|
-
isNumeric?: boolean;
|
255
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
245
|
+
noWrap?: boolean | undefined;
|
246
|
+
breakWord?: boolean | undefined;
|
247
|
+
color?: string | undefined;
|
248
|
+
size?: string | undefined;
|
249
|
+
isNumeric?: boolean | undefined;
|
250
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
251
|
+
noWrap?: boolean | undefined;
|
252
|
+
breakWord?: boolean | undefined;
|
253
|
+
color?: string | undefined;
|
254
|
+
size?: string | undefined;
|
255
|
+
isNumeric?: boolean | undefined;
|
256
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
256
257
|
export declare const TextS: import("react").FunctionComponent<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
|
257
258
|
size: {
|
258
259
|
s: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
259
260
|
};
|
260
261
|
}> & (({
|
261
|
-
noWrap?: boolean;
|
262
|
-
breakWord?: boolean;
|
263
|
-
color?: string;
|
264
|
-
size?: string;
|
265
|
-
isNumeric?: boolean;
|
266
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
267
|
-
noWrap?: boolean;
|
268
|
-
breakWord?: boolean;
|
269
|
-
color?: string;
|
270
|
-
size?: string;
|
271
|
-
isNumeric?: boolean;
|
272
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
262
|
+
noWrap?: boolean | undefined;
|
263
|
+
breakWord?: boolean | undefined;
|
264
|
+
color?: string | undefined;
|
265
|
+
size?: string | undefined;
|
266
|
+
isNumeric?: boolean | undefined;
|
267
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
268
|
+
noWrap?: boolean | undefined;
|
269
|
+
breakWord?: boolean | undefined;
|
270
|
+
color?: string | undefined;
|
271
|
+
size?: string | undefined;
|
272
|
+
isNumeric?: boolean | undefined;
|
273
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
273
274
|
export declare const TextXS: import("react").FunctionComponent<import("@salutejs/plasma-new-hope/types/engines/types").PropsType<{
|
274
275
|
size: {
|
275
276
|
xs: import("@salutejs/plasma-new-hope/types/engines/types").PolymorphicClassName;
|
276
277
|
};
|
277
278
|
}> & (({
|
278
|
-
noWrap?: boolean;
|
279
|
-
breakWord?: boolean;
|
280
|
-
color?: string;
|
281
|
-
size?: string;
|
282
|
-
isNumeric?: boolean;
|
283
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
284
|
-
noWrap?: boolean;
|
285
|
-
breakWord?: boolean;
|
286
|
-
color?: string;
|
287
|
-
size?: string;
|
288
|
-
isNumeric?: boolean;
|
289
|
-
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
279
|
+
noWrap?: boolean | undefined;
|
280
|
+
breakWord?: boolean | undefined;
|
281
|
+
color?: string | undefined;
|
282
|
+
size?: string | undefined;
|
283
|
+
isNumeric?: boolean | undefined;
|
284
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
285
|
+
noWrap?: boolean | undefined;
|
286
|
+
breakWord?: boolean | undefined;
|
287
|
+
color?: string | undefined;
|
288
|
+
size?: string | undefined;
|
289
|
+
isNumeric?: boolean | undefined;
|
290
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps<any> & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|