@homebound/beam 2.217.1 → 2.218.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/dist/Css.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { Properties as Properties1 } from "csstype";
2
2
  /** Given a type X, and the user's proposed type T, only allow keys in X and nothing else. */
3
3
  export declare type Only<X, T> = X & Record<Exclude<keyof T, keyof X>, never>;
4
- export declare type Properties = Properties1;
4
+ export declare type Properties = Properties1<string | 0, string>;
5
5
  export declare type Typography = "tiny" | "tinyMd" | "tinySb" | "tinyBd" | "xs" | "xsMd" | "xsSb" | "xsBd" | "sm" | "smMd" | "smSb" | "smBd" | "base" | "baseMd" | "baseSb" | "baseBd" | "lg" | "lgMd" | "lgSb" | "lgBd" | "xl" | "xlMd" | "xlSb" | "xlBd" | "xl2" | "xl2Md" | "xl2Sb" | "xl2Bd" | "xl3" | "xl3Md" | "xl3Sb" | "xl3Bd" | "xl4" | "xl4Md" | "xl4Sb" | "xl4Bd" | "xl5" | "xl5Md" | "xl5Sb" | "xl5Bd";
6
6
  declare type Opts<T> = {
7
7
  rules: T;
@@ -9,2678 +9,3400 @@ declare type Opts<T> = {
9
9
  important: boolean;
10
10
  selector: string | undefined;
11
11
  };
12
- declare class CssBuilder<T extends Properties1> {
12
+ declare class CssBuilder<T extends Properties> {
13
13
  private opts;
14
14
  constructor(opts: Opts<T>);
15
15
  private get rules();
16
16
  private get enabled();
17
17
  private get selector();
18
18
  private newCss;
19
+ /** Sets `borderStyle: "solid"; borderWidth: "1px"`. */
19
20
  get ba(): CssBuilder<T & {
20
21
  borderStyle: import("csstype").Property.BorderStyle | undefined;
21
22
  } & {
22
- borderWidth: import("csstype").Property.BorderWidth<0 | (string & {})> | undefined;
23
+ borderWidth: import("csstype").Property.BorderWidth<string | 0> | undefined;
23
24
  }>;
25
+ /** Sets `borderTopStyle: "solid"; borderTopWidth: "1px"`. */
24
26
  get bt(): CssBuilder<T & {
25
27
  borderTopStyle: import("csstype").Property.BorderTopStyle | undefined;
26
28
  } & {
27
- borderTopWidth: import("csstype").Property.BorderTopWidth<0 | (string & {})> | undefined;
29
+ borderTopWidth: import("csstype").Property.BorderTopWidth<string | 0> | undefined;
28
30
  }>;
31
+ /** Sets `borderRightStyle: "solid"; borderRightWidth: "1px"`. */
29
32
  get br(): CssBuilder<T & {
30
33
  borderRightStyle: import("csstype").Property.BorderRightStyle | undefined;
31
34
  } & {
32
- borderRightWidth: import("csstype").Property.BorderRightWidth<0 | (string & {})> | undefined;
35
+ borderRightWidth: import("csstype").Property.BorderRightWidth<string | 0> | undefined;
33
36
  }>;
37
+ /** Sets `borderBottomStyle: "solid"; borderBottomWidth: "1px"`. */
34
38
  get bb(): CssBuilder<T & {
35
39
  borderBottomStyle: import("csstype").Property.BorderBottomStyle | undefined;
36
40
  } & {
37
- borderBottomWidth: import("csstype").Property.BorderBottomWidth<0 | (string & {})> | undefined;
41
+ borderBottomWidth: import("csstype").Property.BorderBottomWidth<string | 0> | undefined;
38
42
  }>;
43
+ /** Sets `borderLeftStyle: "solid"; borderLeftWidth: "1px"`. */
39
44
  get bl(): CssBuilder<T & {
40
45
  borderLeftStyle: import("csstype").Property.BorderLeftStyle | undefined;
41
46
  } & {
42
- borderLeftWidth: import("csstype").Property.BorderLeftWidth<0 | (string & {})> | undefined;
47
+ borderLeftWidth: import("csstype").Property.BorderLeftWidth<string | 0> | undefined;
43
48
  }>;
49
+ /** Sets `borderStyle: "none"; borderWidth: "0"`. */
44
50
  get bn(): CssBuilder<T & {
45
51
  borderStyle: import("csstype").Property.BorderStyle | undefined;
46
52
  } & {
47
- borderWidth: import("csstype").Property.BorderWidth<0 | (string & {})> | undefined;
53
+ borderWidth: import("csstype").Property.BorderWidth<string | 0> | undefined;
48
54
  }>;
55
+ /** Sets `borderColor: "rgba(254,254,254,1)"`. */
49
56
  get bWhite(): CssBuilder<T & {
50
57
  borderColor: import("csstype").Property.BorderColor | undefined;
51
58
  }>;
59
+ /** Sets `borderColor: "rgba(0,0,0,0)"`. */
52
60
  get bTransparent(): CssBuilder<T & {
53
61
  borderColor: import("csstype").Property.BorderColor | undefined;
54
62
  }>;
63
+ /** Sets `borderColor: "rgba(255,253,253,1)"`. */
55
64
  get bGray50(): CssBuilder<T & {
56
65
  borderColor: import("csstype").Property.BorderColor | undefined;
57
66
  }>;
67
+ /** Sets `borderColor: "rgba(247,245,245,1)"`. */
58
68
  get bGray100(): CssBuilder<T & {
59
69
  borderColor: import("csstype").Property.BorderColor | undefined;
60
70
  }>;
71
+ /** Sets `borderColor: "rgba(236,235,235,1)"`. */
61
72
  get bGray200(): CssBuilder<T & {
62
73
  borderColor: import("csstype").Property.BorderColor | undefined;
63
74
  }>;
75
+ /** Sets `borderColor: "rgba(221,220,220,1)"`. */
64
76
  get bGray300(): CssBuilder<T & {
65
77
  borderColor: import("csstype").Property.BorderColor | undefined;
66
78
  }>;
79
+ /** Sets `borderColor: "rgba(201,201,201,1)"`. */
67
80
  get bGray400(): CssBuilder<T & {
68
81
  borderColor: import("csstype").Property.BorderColor | undefined;
69
82
  }>;
83
+ /** Sets `borderColor: "rgba(175,175,175,1)"`. */
70
84
  get bGray500(): CssBuilder<T & {
71
85
  borderColor: import("csstype").Property.BorderColor | undefined;
72
86
  }>;
87
+ /** Sets `borderColor: "rgba(141,141,141,1)"`. */
73
88
  get bGray600(): CssBuilder<T & {
74
89
  borderColor: import("csstype").Property.BorderColor | undefined;
75
90
  }>;
91
+ /** Sets `borderColor: "rgba(100,100,100,1)"`. */
76
92
  get bGray700(): CssBuilder<T & {
77
93
  borderColor: import("csstype").Property.BorderColor | undefined;
78
94
  }>;
95
+ /** Sets `borderColor: "rgba(53,53,53,1)"`. */
79
96
  get bGray800(): CssBuilder<T & {
80
97
  borderColor: import("csstype").Property.BorderColor | undefined;
81
98
  }>;
99
+ /** Sets `borderColor: "rgba(36,36,36,1)"`. */
82
100
  get bGray900(): CssBuilder<T & {
83
101
  borderColor: import("csstype").Property.BorderColor | undefined;
84
102
  }>;
103
+ /** Sets `borderColor: "rgba(240,249,255,1)"`. */
85
104
  get bLightBlue50(): CssBuilder<T & {
86
105
  borderColor: import("csstype").Property.BorderColor | undefined;
87
106
  }>;
107
+ /** Sets `borderColor: "rgba(224,242,254,1)"`. */
88
108
  get bLightBlue100(): CssBuilder<T & {
89
109
  borderColor: import("csstype").Property.BorderColor | undefined;
90
110
  }>;
111
+ /** Sets `borderColor: "rgba(186,230,253,1)"`. */
91
112
  get bLightBlue200(): CssBuilder<T & {
92
113
  borderColor: import("csstype").Property.BorderColor | undefined;
93
114
  }>;
115
+ /** Sets `borderColor: "rgba(125,211,252,1)"`. */
94
116
  get bLightBlue300(): CssBuilder<T & {
95
117
  borderColor: import("csstype").Property.BorderColor | undefined;
96
118
  }>;
119
+ /** Sets `borderColor: "rgba(56,189,248,1)"`. */
97
120
  get bLightBlue400(): CssBuilder<T & {
98
121
  borderColor: import("csstype").Property.BorderColor | undefined;
99
122
  }>;
123
+ /** Sets `borderColor: "rgba(14,165,233,1)"`. */
100
124
  get bLightBlue500(): CssBuilder<T & {
101
125
  borderColor: import("csstype").Property.BorderColor | undefined;
102
126
  }>;
127
+ /** Sets `borderColor: "rgba(2,143,199,1)"`. */
103
128
  get bLightBlue600(): CssBuilder<T & {
104
129
  borderColor: import("csstype").Property.BorderColor | undefined;
105
130
  }>;
131
+ /** Sets `borderColor: "rgba(3,105,161,1)"`. */
106
132
  get bLightBlue700(): CssBuilder<T & {
107
133
  borderColor: import("csstype").Property.BorderColor | undefined;
108
134
  }>;
135
+ /** Sets `borderColor: "rgba(7,89,133,1)"`. */
109
136
  get bLightBlue800(): CssBuilder<T & {
110
137
  borderColor: import("csstype").Property.BorderColor | undefined;
111
138
  }>;
139
+ /** Sets `borderColor: "rgba(12,74,110,1)"`. */
112
140
  get bLightBlue900(): CssBuilder<T & {
113
141
  borderColor: import("csstype").Property.BorderColor | undefined;
114
142
  }>;
143
+ /** Sets `borderColor: "rgba(255,242,242,1)"`. */
115
144
  get bRed50(): CssBuilder<T & {
116
145
  borderColor: import("csstype").Property.BorderColor | undefined;
117
146
  }>;
147
+ /** Sets `borderColor: "rgba(253,210,209,1)"`. */
118
148
  get bRed100(): CssBuilder<T & {
119
149
  borderColor: import("csstype").Property.BorderColor | undefined;
120
150
  }>;
151
+ /** Sets `borderColor: "rgba(249,181,177,1)"`. */
121
152
  get bRed200(): CssBuilder<T & {
122
153
  borderColor: import("csstype").Property.BorderColor | undefined;
123
154
  }>;
155
+ /** Sets `borderColor: "rgba(242,155,148,1)"`. */
124
156
  get bRed300(): CssBuilder<T & {
125
157
  borderColor: import("csstype").Property.BorderColor | undefined;
126
158
  }>;
159
+ /** Sets `borderColor: "rgba(232,133,122,1)"`. */
127
160
  get bRed400(): CssBuilder<T & {
128
161
  borderColor: import("csstype").Property.BorderColor | undefined;
129
162
  }>;
163
+ /** Sets `borderColor: "rgba(218,114,100,1)"`. */
130
164
  get bRed500(): CssBuilder<T & {
131
165
  borderColor: import("csstype").Property.BorderColor | undefined;
132
166
  }>;
167
+ /** Sets `borderColor: "rgba(200,98,81,1)"`. */
133
168
  get bRed600(): CssBuilder<T & {
134
169
  borderColor: import("csstype").Property.BorderColor | undefined;
135
170
  }>;
171
+ /** Sets `borderColor: "rgba(176,83,73,1)"`. */
136
172
  get bRed700(): CssBuilder<T & {
137
173
  borderColor: import("csstype").Property.BorderColor | undefined;
138
174
  }>;
175
+ /** Sets `borderColor: "rgba(149,68,64,1)"`. */
139
176
  get bRed800(): CssBuilder<T & {
140
177
  borderColor: import("csstype").Property.BorderColor | undefined;
141
178
  }>;
179
+ /** Sets `borderColor: "rgba(120,54,54,1)"`. */
142
180
  get bRed900(): CssBuilder<T & {
143
181
  borderColor: import("csstype").Property.BorderColor | undefined;
144
182
  }>;
183
+ /** Sets `borderColor: "rgba(255,254,242,1)"`. */
145
184
  get bYellow50(): CssBuilder<T & {
146
185
  borderColor: import("csstype").Property.BorderColor | undefined;
147
186
  }>;
187
+ /** Sets `borderColor: "rgba(255,254,212,1)"`. */
148
188
  get bYellow100(): CssBuilder<T & {
149
189
  borderColor: import("csstype").Property.BorderColor | undefined;
150
190
  }>;
191
+ /** Sets `borderColor: "rgba(255,250,180,1)"`. */
151
192
  get bYellow200(): CssBuilder<T & {
152
193
  borderColor: import("csstype").Property.BorderColor | undefined;
153
194
  }>;
195
+ /** Sets `borderColor: "rgba(255,240,150,1)"`. */
154
196
  get bYellow300(): CssBuilder<T & {
155
197
  borderColor: import("csstype").Property.BorderColor | undefined;
156
198
  }>;
199
+ /** Sets `borderColor: "rgba(255,225,123,1)"`. */
157
200
  get bYellow400(): CssBuilder<T & {
158
201
  borderColor: import("csstype").Property.BorderColor | undefined;
159
202
  }>;
203
+ /** Sets `borderColor: "rgba(255,204,99,1)"`. */
160
204
  get bYellow500(): CssBuilder<T & {
161
205
  borderColor: import("csstype").Property.BorderColor | undefined;
162
206
  }>;
207
+ /** Sets `borderColor: "rgba(246,177,78,1)"`. */
163
208
  get bYellow600(): CssBuilder<T & {
164
209
  borderColor: import("csstype").Property.BorderColor | undefined;
165
210
  }>;
211
+ /** Sets `borderColor: "rgba(207,150,73,1)"`. */
166
212
  get bYellow700(): CssBuilder<T & {
167
213
  borderColor: import("csstype").Property.BorderColor | undefined;
168
214
  }>;
215
+ /** Sets `borderColor: "rgba(164,120,66,1)"`. */
169
216
  get bYellow800(): CssBuilder<T & {
170
217
  borderColor: import("csstype").Property.BorderColor | undefined;
171
218
  }>;
219
+ /** Sets `borderColor: "rgba(120,89,54,1)"`. */
172
220
  get bYellow900(): CssBuilder<T & {
173
221
  borderColor: import("csstype").Property.BorderColor | undefined;
174
222
  }>;
223
+ /** Sets `borderColor: "rgba(250,255,250,1)"`. */
175
224
  get bGreen50(): CssBuilder<T & {
176
225
  borderColor: import("csstype").Property.BorderColor | undefined;
177
226
  }>;
227
+ /** Sets `borderColor: "rgba(223,248,216,1)"`. */
178
228
  get bGreen100(): CssBuilder<T & {
179
229
  borderColor: import("csstype").Property.BorderColor | undefined;
180
230
  }>;
231
+ /** Sets `borderColor: "rgba(199,239,183,1)"`. */
181
232
  get bGreen200(): CssBuilder<T & {
182
233
  borderColor: import("csstype").Property.BorderColor | undefined;
183
234
  }>;
235
+ /** Sets `borderColor: "rgba(179,226,153,1)"`. */
184
236
  get bGreen300(): CssBuilder<T & {
185
237
  borderColor: import("csstype").Property.BorderColor | undefined;
186
238
  }>;
239
+ /** Sets `borderColor: "rgba(163,208,126,1)"`. */
187
240
  get bGreen400(): CssBuilder<T & {
188
241
  borderColor: import("csstype").Property.BorderColor | undefined;
189
242
  }>;
243
+ /** Sets `borderColor: "rgba(146,185,101,1)"`. */
190
244
  get bGreen500(): CssBuilder<T & {
191
245
  borderColor: import("csstype").Property.BorderColor | undefined;
192
246
  }>;
247
+ /** Sets `borderColor: "rgba(126,156,79,1)"`. */
193
248
  get bGreen600(): CssBuilder<T & {
194
249
  borderColor: import("csstype").Property.BorderColor | undefined;
195
250
  }>;
251
+ /** Sets `borderColor: "rgba(101,120,57,1)"`. */
196
252
  get bGreen700(): CssBuilder<T & {
197
253
  borderColor: import("csstype").Property.BorderColor | undefined;
198
254
  }>;
255
+ /** Sets `borderColor: "rgba(64,93,44,1)"`. */
199
256
  get bGreen800(): CssBuilder<T & {
200
257
  borderColor: import("csstype").Property.BorderColor | undefined;
201
258
  }>;
259
+ /** Sets `borderColor: "rgba(34,64,31,1)"`. */
202
260
  get bGreen900(): CssBuilder<T & {
203
261
  borderColor: import("csstype").Property.BorderColor | undefined;
204
262
  }>;
263
+ /** Sets `borderColor: "rgba(245,243,255,1)"`. */
205
264
  get bViolet50(): CssBuilder<T & {
206
265
  borderColor: import("csstype").Property.BorderColor | undefined;
207
266
  }>;
267
+ /** Sets `borderColor: "rgba(238,234,253,1)"`. */
208
268
  get bViolet100(): CssBuilder<T & {
209
269
  borderColor: import("csstype").Property.BorderColor | undefined;
210
270
  }>;
271
+ /** Sets `borderColor: "rgba(232,225,252,1)"`. */
211
272
  get bViolet200(): CssBuilder<T & {
212
273
  borderColor: import("csstype").Property.BorderColor | undefined;
213
274
  }>;
275
+ /** Sets `borderColor: "rgba(218,205,246,1)"`. */
214
276
  get bViolet300(): CssBuilder<T & {
215
277
  borderColor: import("csstype").Property.BorderColor | undefined;
216
278
  }>;
279
+ /** Sets `borderColor: "rgba(204,186,236,1)"`. */
217
280
  get bViolet400(): CssBuilder<T & {
218
281
  borderColor: import("csstype").Property.BorderColor | undefined;
219
282
  }>;
283
+ /** Sets `borderColor: "rgba(190,167,223,1)"`. */
220
284
  get bViolet500(): CssBuilder<T & {
221
285
  borderColor: import("csstype").Property.BorderColor | undefined;
222
286
  }>;
287
+ /** Sets `borderColor: "rgba(173,147,205,1)"`. */
223
288
  get bViolet600(): CssBuilder<T & {
224
289
  borderColor: import("csstype").Property.BorderColor | undefined;
225
290
  }>;
291
+ /** Sets `borderColor: "rgba(153,126,181,1)"`. */
226
292
  get bViolet700(): CssBuilder<T & {
227
293
  borderColor: import("csstype").Property.BorderColor | undefined;
228
294
  }>;
295
+ /** Sets `borderColor: "rgba(128,103,151,1)"`. */
229
296
  get bViolet800(): CssBuilder<T & {
230
297
  borderColor: import("csstype").Property.BorderColor | undefined;
231
298
  }>;
299
+ /** Sets `borderColor: "rgba(100,78,116,1)"`. */
232
300
  get bViolet900(): CssBuilder<T & {
233
301
  borderColor: import("csstype").Property.BorderColor | undefined;
234
302
  }>;
303
+ /** Sets `borderColor: value`. */
235
304
  bc(value: Properties["borderColor"]): CssBuilder<T & {
236
305
  borderColor: import("csstype").Property.BorderColor | undefined;
237
306
  }>;
307
+ /** Sets `borderRadius: "0"`. */
238
308
  get br0(): CssBuilder<T & {
239
- borderRadius: import("csstype").Property.BorderRadius<0 | (string & {})> | undefined;
309
+ borderRadius: import("csstype").Property.BorderRadius<string | 0> | undefined;
240
310
  }>;
311
+ /** Sets `borderRadius: "4px"`. */
241
312
  get br4(): CssBuilder<T & {
242
- borderRadius: import("csstype").Property.BorderRadius<0 | (string & {})> | undefined;
313
+ borderRadius: import("csstype").Property.BorderRadius<string | 0> | undefined;
243
314
  }>;
315
+ /** Sets `borderRadius: "8px"`. */
244
316
  get br8(): CssBuilder<T & {
245
- borderRadius: import("csstype").Property.BorderRadius<0 | (string & {})> | undefined;
317
+ borderRadius: import("csstype").Property.BorderRadius<string | 0> | undefined;
246
318
  }>;
319
+ /** Sets `borderRadius: "12px"`. */
247
320
  get br12(): CssBuilder<T & {
248
- borderRadius: import("csstype").Property.BorderRadius<0 | (string & {})> | undefined;
321
+ borderRadius: import("csstype").Property.BorderRadius<string | 0> | undefined;
249
322
  }>;
323
+ /** Sets `borderRadius: "16px"`. */
250
324
  get br16(): CssBuilder<T & {
251
- borderRadius: import("csstype").Property.BorderRadius<0 | (string & {})> | undefined;
325
+ borderRadius: import("csstype").Property.BorderRadius<string | 0> | undefined;
252
326
  }>;
327
+ /** Sets `borderRadius: "24px"`. */
253
328
  get br24(): CssBuilder<T & {
254
- borderRadius: import("csstype").Property.BorderRadius<0 | (string & {})> | undefined;
329
+ borderRadius: import("csstype").Property.BorderRadius<string | 0> | undefined;
255
330
  }>;
331
+ /** Sets `borderRadius: "100%"`. */
256
332
  get br100(): CssBuilder<T & {
257
- borderRadius: import("csstype").Property.BorderRadius<0 | (string & {})> | undefined;
333
+ borderRadius: import("csstype").Property.BorderRadius<string | 0> | undefined;
258
334
  }>;
335
+ /** Sets `borderRadius: value`. */
259
336
  borderRadius(value: Properties["borderRadius"]): CssBuilder<T & {
260
- borderRadius: import("csstype").Property.BorderRadius<0 | (string & {})> | undefined;
337
+ borderRadius: import("csstype").Property.BorderRadius<string | 0> | undefined;
261
338
  }>;
339
+ /** Sets `borderTopRightRadius: "4px"; borderTopLeftRadius: "4px"`. */
262
340
  get brt4(): CssBuilder<T & {
263
- borderTopRightRadius: import("csstype").Property.BorderTopRightRadius<0 | (string & {})> | undefined;
341
+ borderTopRightRadius: import("csstype").Property.BorderTopRightRadius<string | 0> | undefined;
264
342
  } & {
265
- borderTopLeftRadius: import("csstype").Property.BorderTopLeftRadius<0 | (string & {})> | undefined;
343
+ borderTopLeftRadius: import("csstype").Property.BorderTopLeftRadius<string | 0> | undefined;
266
344
  }>;
345
+ /** Sets `borderBottomRightRadius: "4px"; borderBottomLeftRadius: "4px"`. */
267
346
  get brb4(): CssBuilder<T & {
268
- borderBottomRightRadius: import("csstype").Property.BorderBottomRightRadius<0 | (string & {})> | undefined;
347
+ borderBottomRightRadius: import("csstype").Property.BorderBottomRightRadius<string | 0> | undefined;
269
348
  } & {
270
- borderBottomLeftRadius: import("csstype").Property.BorderBottomLeftRadius<0 | (string & {})> | undefined;
349
+ borderBottomLeftRadius: import("csstype").Property.BorderBottomLeftRadius<string | 0> | undefined;
271
350
  }>;
351
+ /** Sets `borderStyle: "dashed"`. */
272
352
  get bsDashed(): CssBuilder<T & {
273
353
  borderStyle: import("csstype").Property.BorderStyle | undefined;
274
354
  }>;
355
+ /** Sets `borderStyle: "dotted"`. */
275
356
  get bsDotted(): CssBuilder<T & {
276
357
  borderStyle: import("csstype").Property.BorderStyle | undefined;
277
358
  }>;
359
+ /** Sets `borderStyle: "none"`. */
278
360
  get bsNone(): CssBuilder<T & {
279
361
  borderStyle: import("csstype").Property.BorderStyle | undefined;
280
362
  }>;
363
+ /** Sets `borderStyle: "solid"`. */
281
364
  get bsSolid(): CssBuilder<T & {
282
365
  borderStyle: import("csstype").Property.BorderStyle | undefined;
283
366
  }>;
367
+ /** Sets `borderStyle: value`. */
284
368
  bs(value: Properties["borderStyle"]): CssBuilder<T & {
285
369
  borderStyle: import("csstype").Property.BorderStyle | undefined;
286
370
  }>;
371
+ /** Sets `borderWidth: "1px"`. */
287
372
  get bw1(): CssBuilder<T & {
288
- borderWidth: import("csstype").Property.BorderWidth<0 | (string & {})> | undefined;
373
+ borderWidth: import("csstype").Property.BorderWidth<string | 0> | undefined;
289
374
  }>;
375
+ /** Sets `borderWidth: "2px"`. */
290
376
  get bw2(): CssBuilder<T & {
291
- borderWidth: import("csstype").Property.BorderWidth<0 | (string & {})> | undefined;
377
+ borderWidth: import("csstype").Property.BorderWidth<string | 0> | undefined;
292
378
  }>;
379
+ /** Sets `borderWidth: value`. */
293
380
  bw(value: Properties["borderWidth"]): CssBuilder<T & {
294
- borderWidth: import("csstype").Property.BorderWidth<0 | (string & {})> | undefined;
381
+ borderWidth: import("csstype").Property.BorderWidth<string | 0> | undefined;
295
382
  }>;
383
+ /** Sets `boxShadow: "none"`. */
296
384
  get bsh0(): CssBuilder<T & {
297
385
  boxShadow: import("csstype").Property.BoxShadow | undefined;
298
386
  }>;
387
+ /** Sets `boxShadow: "0px 2px 16px 0px rgba(17,24,39,0.03), 0px 4px 8px 0px rgba(17,24,39,0.08)"`. */
299
388
  get bshBasic(): CssBuilder<T & {
300
389
  boxShadow: import("csstype").Property.BoxShadow | undefined;
301
390
  }>;
391
+ /** Sets `boxShadow: "0px 2px 24px 0px rgba(17,24,39,0.08), 0px 4px 8px 0px rgba(17,24,39,0.1)"`. */
302
392
  get bshHover(): CssBuilder<T & {
303
393
  boxShadow: import("csstype").Property.BoxShadow | undefined;
304
394
  }>;
395
+ /** Sets `boxShadow: "0px 0px 0px 2px rgba(254,254,254,1), 0px 0px 0px 4px rgba(3,105,161,1)"`. */
305
396
  get bshFocus(): CssBuilder<T & {
306
397
  boxShadow: import("csstype").Property.BoxShadow | undefined;
307
398
  }>;
399
+ /** Sets `boxShadow: "0px 0px 0px 2px rgba(254,254,254,1), 0px 0px 0px 4px rgba(149,68,64,1)"`. */
308
400
  get bshDanger(): CssBuilder<T & {
309
401
  boxShadow: import("csstype").Property.BoxShadow | undefined;
310
402
  }>;
403
+ /** Sets `boxShadow: "0px 20px 25px -5px rgba(0,0,0,0.1), 0px 10px 10px -5px rgba(0,0,0,0.04)"`. */
311
404
  get bshModal(): CssBuilder<T & {
312
405
  boxShadow: import("csstype").Property.BoxShadow | undefined;
313
406
  }>;
407
+ /** Sets `boxShadow: value`. */
314
408
  boxShadow(value: Properties["boxShadow"]): CssBuilder<T & {
315
409
  boxShadow: import("csstype").Property.BoxShadow | undefined;
316
410
  }>;
411
+ /** Sets `top: "0px"`. */
317
412
  get top0(): CssBuilder<T & {
318
- top: import("csstype").Property.Top<0 | (string & {})> | undefined;
413
+ top: import("csstype").Property.Top<string | 0> | undefined;
319
414
  }>;
415
+ /** Sets `top: "8px"`. */
320
416
  get top1(): CssBuilder<T & {
321
- top: import("csstype").Property.Top<0 | (string & {})> | undefined;
417
+ top: import("csstype").Property.Top<string | 0> | undefined;
322
418
  }>;
419
+ /** Sets `top: "16px"`. */
323
420
  get top2(): CssBuilder<T & {
324
- top: import("csstype").Property.Top<0 | (string & {})> | undefined;
421
+ top: import("csstype").Property.Top<string | 0> | undefined;
325
422
  }>;
423
+ /** Sets `top: "24px"`. */
326
424
  get top3(): CssBuilder<T & {
327
- top: import("csstype").Property.Top<0 | (string & {})> | undefined;
425
+ top: import("csstype").Property.Top<string | 0> | undefined;
328
426
  }>;
427
+ /** Sets `top: "32px"`. */
329
428
  get top4(): CssBuilder<T & {
330
- top: import("csstype").Property.Top<0 | (string & {})> | undefined;
429
+ top: import("csstype").Property.Top<string | 0> | undefined;
331
430
  }>;
431
+ /** Sets `top: "40px"`. */
332
432
  get top5(): CssBuilder<T & {
333
- top: import("csstype").Property.Top<0 | (string & {})> | undefined;
433
+ top: import("csstype").Property.Top<string | 0> | undefined;
334
434
  }>;
435
+ /** Sets `top: "48px"`. */
335
436
  get top6(): CssBuilder<T & {
336
- top: import("csstype").Property.Top<0 | (string & {})> | undefined;
437
+ top: import("csstype").Property.Top<string | 0> | undefined;
337
438
  }>;
439
+ /** Sets `top: "56px"`. */
338
440
  get top7(): CssBuilder<T & {
339
- top: import("csstype").Property.Top<0 | (string & {})> | undefined;
441
+ top: import("csstype").Property.Top<string | 0> | undefined;
340
442
  }>;
443
+ /** Sets `top: "64px"`. */
341
444
  get top8(): CssBuilder<T & {
342
- top: import("csstype").Property.Top<0 | (string & {})> | undefined;
445
+ top: import("csstype").Property.Top<string | 0> | undefined;
343
446
  }>;
447
+ /** Sets `top: inc`. */
344
448
  top(inc: number | string): CssBuilder<T & {
345
- top: import("csstype").Property.Top<0 | (string & {})> | undefined;
449
+ top: import("csstype").Property.Top<string | 0> | undefined;
346
450
  }>;
451
+ /** Sets `top: px`. */
347
452
  topPx(px: number): CssBuilder<T & {
348
- top: import("csstype").Property.Top<0 | (string & {})> | undefined;
453
+ top: import("csstype").Property.Top<string | 0> | undefined;
349
454
  }>;
455
+ /** Sets `right: "0px"`. */
350
456
  get right0(): CssBuilder<T & {
351
- right: import("csstype").Property.Right<0 | (string & {})> | undefined;
457
+ right: import("csstype").Property.Right<string | 0> | undefined;
352
458
  }>;
459
+ /** Sets `right: "8px"`. */
353
460
  get right1(): CssBuilder<T & {
354
- right: import("csstype").Property.Right<0 | (string & {})> | undefined;
461
+ right: import("csstype").Property.Right<string | 0> | undefined;
355
462
  }>;
463
+ /** Sets `right: "16px"`. */
356
464
  get right2(): CssBuilder<T & {
357
- right: import("csstype").Property.Right<0 | (string & {})> | undefined;
465
+ right: import("csstype").Property.Right<string | 0> | undefined;
358
466
  }>;
467
+ /** Sets `right: "24px"`. */
359
468
  get right3(): CssBuilder<T & {
360
- right: import("csstype").Property.Right<0 | (string & {})> | undefined;
469
+ right: import("csstype").Property.Right<string | 0> | undefined;
361
470
  }>;
471
+ /** Sets `right: "32px"`. */
362
472
  get right4(): CssBuilder<T & {
363
- right: import("csstype").Property.Right<0 | (string & {})> | undefined;
473
+ right: import("csstype").Property.Right<string | 0> | undefined;
364
474
  }>;
475
+ /** Sets `right: "40px"`. */
365
476
  get right5(): CssBuilder<T & {
366
- right: import("csstype").Property.Right<0 | (string & {})> | undefined;
477
+ right: import("csstype").Property.Right<string | 0> | undefined;
367
478
  }>;
479
+ /** Sets `right: "48px"`. */
368
480
  get right6(): CssBuilder<T & {
369
- right: import("csstype").Property.Right<0 | (string & {})> | undefined;
481
+ right: import("csstype").Property.Right<string | 0> | undefined;
370
482
  }>;
483
+ /** Sets `right: "56px"`. */
371
484
  get right7(): CssBuilder<T & {
372
- right: import("csstype").Property.Right<0 | (string & {})> | undefined;
485
+ right: import("csstype").Property.Right<string | 0> | undefined;
373
486
  }>;
487
+ /** Sets `right: "64px"`. */
374
488
  get right8(): CssBuilder<T & {
375
- right: import("csstype").Property.Right<0 | (string & {})> | undefined;
489
+ right: import("csstype").Property.Right<string | 0> | undefined;
376
490
  }>;
491
+ /** Sets `right: inc`. */
377
492
  right(inc: number | string): CssBuilder<T & {
378
- right: import("csstype").Property.Right<0 | (string & {})> | undefined;
493
+ right: import("csstype").Property.Right<string | 0> | undefined;
379
494
  }>;
495
+ /** Sets `right: px`. */
380
496
  rightPx(px: number): CssBuilder<T & {
381
- right: import("csstype").Property.Right<0 | (string & {})> | undefined;
497
+ right: import("csstype").Property.Right<string | 0> | undefined;
382
498
  }>;
499
+ /** Sets `bottom: "0px"`. */
383
500
  get bottom0(): CssBuilder<T & {
384
- bottom: import("csstype").Property.Bottom<0 | (string & {})> | undefined;
501
+ bottom: import("csstype").Property.Bottom<string | 0> | undefined;
385
502
  }>;
503
+ /** Sets `bottom: "8px"`. */
386
504
  get bottom1(): CssBuilder<T & {
387
- bottom: import("csstype").Property.Bottom<0 | (string & {})> | undefined;
505
+ bottom: import("csstype").Property.Bottom<string | 0> | undefined;
388
506
  }>;
507
+ /** Sets `bottom: "16px"`. */
389
508
  get bottom2(): CssBuilder<T & {
390
- bottom: import("csstype").Property.Bottom<0 | (string & {})> | undefined;
509
+ bottom: import("csstype").Property.Bottom<string | 0> | undefined;
391
510
  }>;
511
+ /** Sets `bottom: "24px"`. */
392
512
  get bottom3(): CssBuilder<T & {
393
- bottom: import("csstype").Property.Bottom<0 | (string & {})> | undefined;
513
+ bottom: import("csstype").Property.Bottom<string | 0> | undefined;
394
514
  }>;
515
+ /** Sets `bottom: "32px"`. */
395
516
  get bottom4(): CssBuilder<T & {
396
- bottom: import("csstype").Property.Bottom<0 | (string & {})> | undefined;
517
+ bottom: import("csstype").Property.Bottom<string | 0> | undefined;
397
518
  }>;
519
+ /** Sets `bottom: "40px"`. */
398
520
  get bottom5(): CssBuilder<T & {
399
- bottom: import("csstype").Property.Bottom<0 | (string & {})> | undefined;
521
+ bottom: import("csstype").Property.Bottom<string | 0> | undefined;
400
522
  }>;
523
+ /** Sets `bottom: "48px"`. */
401
524
  get bottom6(): CssBuilder<T & {
402
- bottom: import("csstype").Property.Bottom<0 | (string & {})> | undefined;
525
+ bottom: import("csstype").Property.Bottom<string | 0> | undefined;
403
526
  }>;
527
+ /** Sets `bottom: "56px"`. */
404
528
  get bottom7(): CssBuilder<T & {
405
- bottom: import("csstype").Property.Bottom<0 | (string & {})> | undefined;
529
+ bottom: import("csstype").Property.Bottom<string | 0> | undefined;
406
530
  }>;
531
+ /** Sets `bottom: "64px"`. */
407
532
  get bottom8(): CssBuilder<T & {
408
- bottom: import("csstype").Property.Bottom<0 | (string & {})> | undefined;
533
+ bottom: import("csstype").Property.Bottom<string | 0> | undefined;
409
534
  }>;
535
+ /** Sets `bottom: inc`. */
410
536
  bottom(inc: number | string): CssBuilder<T & {
411
- bottom: import("csstype").Property.Bottom<0 | (string & {})> | undefined;
537
+ bottom: import("csstype").Property.Bottom<string | 0> | undefined;
412
538
  }>;
539
+ /** Sets `bottom: px`. */
413
540
  bottomPx(px: number): CssBuilder<T & {
414
- bottom: import("csstype").Property.Bottom<0 | (string & {})> | undefined;
541
+ bottom: import("csstype").Property.Bottom<string | 0> | undefined;
415
542
  }>;
543
+ /** Sets `left: "0px"`. */
416
544
  get left0(): CssBuilder<T & {
417
- left: import("csstype").Property.Left<0 | (string & {})> | undefined;
545
+ left: import("csstype").Property.Left<string | 0> | undefined;
418
546
  }>;
547
+ /** Sets `left: "8px"`. */
419
548
  get left1(): CssBuilder<T & {
420
- left: import("csstype").Property.Left<0 | (string & {})> | undefined;
549
+ left: import("csstype").Property.Left<string | 0> | undefined;
421
550
  }>;
551
+ /** Sets `left: "16px"`. */
422
552
  get left2(): CssBuilder<T & {
423
- left: import("csstype").Property.Left<0 | (string & {})> | undefined;
553
+ left: import("csstype").Property.Left<string | 0> | undefined;
424
554
  }>;
555
+ /** Sets `left: "24px"`. */
425
556
  get left3(): CssBuilder<T & {
426
- left: import("csstype").Property.Left<0 | (string & {})> | undefined;
557
+ left: import("csstype").Property.Left<string | 0> | undefined;
427
558
  }>;
559
+ /** Sets `left: "32px"`. */
428
560
  get left4(): CssBuilder<T & {
429
- left: import("csstype").Property.Left<0 | (string & {})> | undefined;
561
+ left: import("csstype").Property.Left<string | 0> | undefined;
430
562
  }>;
563
+ /** Sets `left: "40px"`. */
431
564
  get left5(): CssBuilder<T & {
432
- left: import("csstype").Property.Left<0 | (string & {})> | undefined;
565
+ left: import("csstype").Property.Left<string | 0> | undefined;
433
566
  }>;
567
+ /** Sets `left: "48px"`. */
434
568
  get left6(): CssBuilder<T & {
435
- left: import("csstype").Property.Left<0 | (string & {})> | undefined;
569
+ left: import("csstype").Property.Left<string | 0> | undefined;
436
570
  }>;
571
+ /** Sets `left: "56px"`. */
437
572
  get left7(): CssBuilder<T & {
438
- left: import("csstype").Property.Left<0 | (string & {})> | undefined;
573
+ left: import("csstype").Property.Left<string | 0> | undefined;
439
574
  }>;
575
+ /** Sets `left: "64px"`. */
440
576
  get left8(): CssBuilder<T & {
441
- left: import("csstype").Property.Left<0 | (string & {})> | undefined;
577
+ left: import("csstype").Property.Left<string | 0> | undefined;
442
578
  }>;
579
+ /** Sets `left: inc`. */
443
580
  left(inc: number | string): CssBuilder<T & {
444
- left: import("csstype").Property.Left<0 | (string & {})> | undefined;
581
+ left: import("csstype").Property.Left<string | 0> | undefined;
445
582
  }>;
583
+ /** Sets `left: px`. */
446
584
  leftPx(px: number): CssBuilder<T & {
447
- left: import("csstype").Property.Left<0 | (string & {})> | undefined;
585
+ left: import("csstype").Property.Left<string | 0> | undefined;
448
586
  }>;
587
+ /** Sets `cursor: "pointer"`. */
449
588
  get cursorPointer(): CssBuilder<T & {
450
589
  cursor: import("csstype").Property.Cursor | undefined;
451
590
  }>;
591
+ /** Sets `cursor: "not-allowed"`. */
452
592
  get cursorNotAllowed(): CssBuilder<T & {
453
593
  cursor: import("csstype").Property.Cursor | undefined;
454
594
  }>;
595
+ /** Sets `cursor: value`. */
455
596
  cursor(value: Properties["cursor"]): CssBuilder<T & {
456
597
  cursor: import("csstype").Property.Cursor | undefined;
457
598
  }>;
599
+ /** Sets `display: "none"`. */
458
600
  get dn(): CssBuilder<T & {
459
601
  display: import("csstype").Property.Display | undefined;
460
602
  }>;
603
+ /** Sets `display: "block"`. */
461
604
  get db(): CssBuilder<T & {
462
605
  display: import("csstype").Property.Display | undefined;
463
606
  }>;
607
+ /** Sets `display: "inline-block"`. */
464
608
  get dib(): CssBuilder<T & {
465
609
  display: import("csstype").Property.Display | undefined;
466
610
  }>;
611
+ /** Sets `display: "inline-table"`. */
467
612
  get dit(): CssBuilder<T & {
468
613
  display: import("csstype").Property.Display | undefined;
469
614
  }>;
615
+ /** Sets `display: "table"`. */
470
616
  get dt(): CssBuilder<T & {
471
617
  display: import("csstype").Property.Display | undefined;
472
618
  }>;
619
+ /** Sets `display: "table-cell"`. */
473
620
  get dtc(): CssBuilder<T & {
474
621
  display: import("csstype").Property.Display | undefined;
475
622
  }>;
623
+ /** Sets `display: "table-row"`. */
476
624
  get dtRow(): CssBuilder<T & {
477
625
  display: import("csstype").Property.Display | undefined;
478
626
  }>;
627
+ /** Sets `display: "table-column"`. */
479
628
  get dtColumn(): CssBuilder<T & {
480
629
  display: import("csstype").Property.Display | undefined;
481
630
  }>;
631
+ /** Sets `display: "table-column-group"`. */
482
632
  get dtColumnGroup(): CssBuilder<T & {
483
633
  display: import("csstype").Property.Display | undefined;
484
634
  }>;
635
+ /** Sets `display: "grid"`. */
485
636
  get dg(): CssBuilder<T & {
486
637
  display: import("csstype").Property.Display | undefined;
487
638
  }>;
639
+ /** Sets `display: "inline-grid"`. */
488
640
  get dig(): CssBuilder<T & {
489
641
  display: import("csstype").Property.Display | undefined;
490
642
  }>;
643
+ /** Sets `display: "flex"`. */
491
644
  get df(): CssBuilder<T & {
492
645
  display: import("csstype").Property.Display | undefined;
493
646
  }>;
647
+ /** Sets `display: "inline-flex"`. */
494
648
  get dif(): CssBuilder<T & {
495
649
  display: import("csstype").Property.Display | undefined;
496
650
  }>;
651
+ /** Sets `display: value`. */
497
652
  display(value: Properties["display"]): CssBuilder<T & {
498
653
  display: import("csstype").Property.Display | undefined;
499
654
  }>;
655
+ /** Sets `flex: "initial"`. */
500
656
  get fi(): CssBuilder<T & {
501
- flex: import("csstype").Property.Flex<0 | (string & {})> | undefined;
657
+ flex: import("csstype").Property.Flex<string | 0> | undefined;
502
658
  }>;
659
+ /** Sets `flex: "auto"`. */
503
660
  get fa(): CssBuilder<T & {
504
- flex: import("csstype").Property.Flex<0 | (string & {})> | undefined;
661
+ flex: import("csstype").Property.Flex<string | 0> | undefined;
505
662
  }>;
663
+ /** Sets `flex: "none"`. */
506
664
  get fn(): CssBuilder<T & {
507
- flex: import("csstype").Property.Flex<0 | (string & {})> | undefined;
665
+ flex: import("csstype").Property.Flex<string | 0> | undefined;
508
666
  }>;
667
+ /** Sets `flex: "1"`. */
509
668
  get f1(): CssBuilder<T & {
510
- flex: import("csstype").Property.Flex<0 | (string & {})> | undefined;
669
+ flex: import("csstype").Property.Flex<string | 0> | undefined;
511
670
  }>;
671
+ /** Sets `flex: "2"`. */
512
672
  get f2(): CssBuilder<T & {
513
- flex: import("csstype").Property.Flex<0 | (string & {})> | undefined;
673
+ flex: import("csstype").Property.Flex<string | 0> | undefined;
514
674
  }>;
675
+ /** Sets `flex: "3"`. */
515
676
  get f3(): CssBuilder<T & {
516
- flex: import("csstype").Property.Flex<0 | (string & {})> | undefined;
677
+ flex: import("csstype").Property.Flex<string | 0> | undefined;
517
678
  }>;
679
+ /** Sets `flex: "4"`. */
518
680
  get f4(): CssBuilder<T & {
519
- flex: import("csstype").Property.Flex<0 | (string & {})> | undefined;
681
+ flex: import("csstype").Property.Flex<string | 0> | undefined;
520
682
  }>;
683
+ /** Sets `flex: "5"`. */
521
684
  get f5(): CssBuilder<T & {
522
- flex: import("csstype").Property.Flex<0 | (string & {})> | undefined;
685
+ flex: import("csstype").Property.Flex<string | 0> | undefined;
523
686
  }>;
687
+ /** Sets `flex: value`. */
524
688
  f(value: Properties["flex"]): CssBuilder<T & {
525
- flex: import("csstype").Property.Flex<0 | (string & {})> | undefined;
689
+ flex: import("csstype").Property.Flex<string | 0> | undefined;
526
690
  }>;
691
+ /** Sets `justifyContent: "flex-start"`. */
527
692
  get jcfs(): CssBuilder<T & {
528
693
  justifyContent: import("csstype").Property.JustifyContent | undefined;
529
694
  }>;
695
+ /** Sets `justifyContent: "flex-end"`. */
530
696
  get jcfe(): CssBuilder<T & {
531
697
  justifyContent: import("csstype").Property.JustifyContent | undefined;
532
698
  }>;
699
+ /** Sets `justifyContent: "center"`. */
533
700
  get jcc(): CssBuilder<T & {
534
701
  justifyContent: import("csstype").Property.JustifyContent | undefined;
535
702
  }>;
703
+ /** Sets `justifyContent: "space-between"`. */
536
704
  get jcsb(): CssBuilder<T & {
537
705
  justifyContent: import("csstype").Property.JustifyContent | undefined;
538
706
  }>;
707
+ /** Sets `justifyContent: "space-around"`. */
539
708
  get jcsa(): CssBuilder<T & {
540
709
  justifyContent: import("csstype").Property.JustifyContent | undefined;
541
710
  }>;
711
+ /** Sets `justifyContent: "space-evenly"`. */
542
712
  get jcse(): CssBuilder<T & {
543
713
  justifyContent: import("csstype").Property.JustifyContent | undefined;
544
714
  }>;
715
+ /** Sets `justifyContent: value`. */
545
716
  jc(value: Properties["justifyContent"]): CssBuilder<T & {
546
717
  justifyContent: import("csstype").Property.JustifyContent | undefined;
547
718
  }>;
719
+ /** Sets `justifyItems: "flex-start"`. */
548
720
  get jifs(): CssBuilder<T & {
549
721
  justifyItems: import("csstype").Property.JustifyItems | undefined;
550
722
  }>;
723
+ /** Sets `justifyItems: "flex-end"`. */
551
724
  get jife(): CssBuilder<T & {
552
725
  justifyItems: import("csstype").Property.JustifyItems | undefined;
553
726
  }>;
727
+ /** Sets `justifyItems: "center"`. */
554
728
  get jic(): CssBuilder<T & {
555
729
  justifyItems: import("csstype").Property.JustifyItems | undefined;
556
730
  }>;
731
+ /** Sets `justifyItems: "space-between"`. */
557
732
  get jisb(): CssBuilder<T & {
558
733
  justifyItems: import("csstype").Property.JustifyItems | undefined;
559
734
  }>;
735
+ /** Sets `justifyItems: "space-around"`. */
560
736
  get jisa(): CssBuilder<T & {
561
737
  justifyItems: import("csstype").Property.JustifyItems | undefined;
562
738
  }>;
739
+ /** Sets `justifyItems: "space-evenly"`. */
563
740
  get jise(): CssBuilder<T & {
564
741
  justifyItems: import("csstype").Property.JustifyItems | undefined;
565
742
  }>;
743
+ /** Sets `justifyItems: value`. */
566
744
  ji(value: Properties["justifyItems"]): CssBuilder<T & {
567
745
  justifyItems: import("csstype").Property.JustifyItems | undefined;
568
746
  }>;
747
+ /** Sets `alignSelf: "flex-start"`. */
569
748
  get asfs(): CssBuilder<T & {
570
749
  alignSelf: import("csstype").Property.AlignSelf | undefined;
571
750
  }>;
751
+ /** Sets `alignSelf: "flex-end"`. */
572
752
  get asfe(): CssBuilder<T & {
573
753
  alignSelf: import("csstype").Property.AlignSelf | undefined;
574
754
  }>;
755
+ /** Sets `alignSelf: "center"`. */
575
756
  get asc(): CssBuilder<T & {
576
757
  alignSelf: import("csstype").Property.AlignSelf | undefined;
577
758
  }>;
759
+ /** Sets `alignSelf: "baseline"`. */
578
760
  get asb(): CssBuilder<T & {
579
761
  alignSelf: import("csstype").Property.AlignSelf | undefined;
580
762
  }>;
763
+ /** Sets `alignSelf: "stretch"`. */
581
764
  get asStretch(): CssBuilder<T & {
582
765
  alignSelf: import("csstype").Property.AlignSelf | undefined;
583
766
  }>;
767
+ /** Sets `alignSelf: value`. */
584
768
  as(value: Properties["alignSelf"]): CssBuilder<T & {
585
769
  alignSelf: import("csstype").Property.AlignSelf | undefined;
586
770
  }>;
771
+ /** Sets `alignItems: "flex-start"`. */
587
772
  get aifs(): CssBuilder<T & {
588
773
  alignItems: import("csstype").Property.AlignItems | undefined;
589
774
  }>;
775
+ /** Sets `alignItems: "flex-end"`. */
590
776
  get aife(): CssBuilder<T & {
591
777
  alignItems: import("csstype").Property.AlignItems | undefined;
592
778
  }>;
779
+ /** Sets `alignItems: "center"`. */
593
780
  get aic(): CssBuilder<T & {
594
781
  alignItems: import("csstype").Property.AlignItems | undefined;
595
782
  }>;
783
+ /** Sets `alignItems: "baseline"`. */
596
784
  get aib(): CssBuilder<T & {
597
785
  alignItems: import("csstype").Property.AlignItems | undefined;
598
786
  }>;
787
+ /** Sets `alignItems: "stretch"`. */
599
788
  get ais(): CssBuilder<T & {
600
789
  alignItems: import("csstype").Property.AlignItems | undefined;
601
790
  }>;
791
+ /** Sets `alignItems: value`. */
602
792
  ai(value: Properties["alignItems"]): CssBuilder<T & {
603
793
  alignItems: import("csstype").Property.AlignItems | undefined;
604
794
  }>;
795
+ /** Sets `flexBasis: "100%"`. */
605
796
  get fb1(): CssBuilder<T & {
606
- flexBasis: import("csstype").Property.FlexBasis<0 | (string & {})> | undefined;
797
+ flexBasis: import("csstype").Property.FlexBasis<string | 0> | undefined;
607
798
  }>;
799
+ /** Sets `flexBasis: "50%"`. */
608
800
  get fb2(): CssBuilder<T & {
609
- flexBasis: import("csstype").Property.FlexBasis<0 | (string & {})> | undefined;
801
+ flexBasis: import("csstype").Property.FlexBasis<string | 0> | undefined;
610
802
  }>;
803
+ /** Sets `flexBasis: "33.333333%"`. */
611
804
  get fb3(): CssBuilder<T & {
612
- flexBasis: import("csstype").Property.FlexBasis<0 | (string & {})> | undefined;
805
+ flexBasis: import("csstype").Property.FlexBasis<string | 0> | undefined;
613
806
  }>;
807
+ /** Sets `flexBasis: "25%"`. */
614
808
  get fb4(): CssBuilder<T & {
615
- flexBasis: import("csstype").Property.FlexBasis<0 | (string & {})> | undefined;
809
+ flexBasis: import("csstype").Property.FlexBasis<string | 0> | undefined;
616
810
  }>;
811
+ /** Sets `flexBasis: "20%"`. */
617
812
  get fb5(): CssBuilder<T & {
618
- flexBasis: import("csstype").Property.FlexBasis<0 | (string & {})> | undefined;
813
+ flexBasis: import("csstype").Property.FlexBasis<string | 0> | undefined;
619
814
  }>;
815
+ /** Sets `flexBasis: "16.666666%"`. */
620
816
  get fb6(): CssBuilder<T & {
621
- flexBasis: import("csstype").Property.FlexBasis<0 | (string & {})> | undefined;
817
+ flexBasis: import("csstype").Property.FlexBasis<string | 0> | undefined;
622
818
  }>;
819
+ /** Sets `flexBasis: "14.285714%"`. */
623
820
  get fb7(): CssBuilder<T & {
624
- flexBasis: import("csstype").Property.FlexBasis<0 | (string & {})> | undefined;
821
+ flexBasis: import("csstype").Property.FlexBasis<string | 0> | undefined;
625
822
  }>;
823
+ /** Sets `flexBasis: "12.5%"`. */
626
824
  get fb0(): CssBuilder<T & {
627
- flexBasis: import("csstype").Property.FlexBasis<0 | (string & {})> | undefined;
825
+ flexBasis: import("csstype").Property.FlexBasis<string | 0> | undefined;
628
826
  }>;
827
+ /** Sets `flexBasis: value`. */
629
828
  fb(value: Properties["flexBasis"]): CssBuilder<T & {
630
- flexBasis: import("csstype").Property.FlexBasis<0 | (string & {})> | undefined;
829
+ flexBasis: import("csstype").Property.FlexBasis<string | 0> | undefined;
631
830
  }>;
831
+ /** Sets `flex: "auto"`. */
632
832
  get flexAuto(): CssBuilder<T & {
633
- flex: import("csstype").Property.Flex<0 | (string & {})> | undefined;
833
+ flex: import("csstype").Property.Flex<string | 0> | undefined;
634
834
  }>;
835
+ /** Sets `flex: "none"`. */
635
836
  get flexNone(): CssBuilder<T & {
636
- flex: import("csstype").Property.Flex<0 | (string & {})> | undefined;
837
+ flex: import("csstype").Property.Flex<string | 0> | undefined;
637
838
  }>;
839
+ /** Sets `flex: value`. */
638
840
  flex(value: Properties["flex"]): CssBuilder<T & {
639
- flex: import("csstype").Property.Flex<0 | (string & {})> | undefined;
841
+ flex: import("csstype").Property.Flex<string | 0> | undefined;
640
842
  }>;
843
+ /** Sets `flexGrow: 0`. */
641
844
  get fg0(): CssBuilder<T & {
642
845
  flexGrow: import("csstype").Property.FlexGrow | undefined;
643
846
  }>;
847
+ /** Sets `flexGrow: 1`. */
644
848
  get fg1(): CssBuilder<T & {
645
849
  flexGrow: import("csstype").Property.FlexGrow | undefined;
646
850
  }>;
851
+ /** Sets `flexGrow: value`. */
647
852
  flexGrow(value: Properties["flexGrow"]): CssBuilder<T & {
648
853
  flexGrow: import("csstype").Property.FlexGrow | undefined;
649
854
  }>;
855
+ /** Sets `flexShrink: 0`. */
650
856
  get fs0(): CssBuilder<T & {
651
857
  flexShrink: import("csstype").Property.FlexShrink | undefined;
652
858
  }>;
859
+ /** Sets `flexShrink: 1`. */
653
860
  get fs1(): CssBuilder<T & {
654
861
  flexShrink: import("csstype").Property.FlexShrink | undefined;
655
862
  }>;
863
+ /** Sets `flexShrink: value`. */
656
864
  flexShrink(value: Properties["flexShrink"]): CssBuilder<T & {
657
865
  flexShrink: import("csstype").Property.FlexShrink | undefined;
658
866
  }>;
867
+ /** Sets `flexDirection: "row"`. */
659
868
  get fdr(): CssBuilder<T & {
660
869
  flexDirection: import("csstype").Property.FlexDirection | undefined;
661
870
  }>;
871
+ /** Sets `flexDirection: "row-reverse"`. */
662
872
  get fdrr(): CssBuilder<T & {
663
873
  flexDirection: import("csstype").Property.FlexDirection | undefined;
664
874
  }>;
875
+ /** Sets `flexDirection: "column"`. */
665
876
  get fdc(): CssBuilder<T & {
666
877
  flexDirection: import("csstype").Property.FlexDirection | undefined;
667
878
  }>;
879
+ /** Sets `flexDirection: "column-reverse"`. */
668
880
  get fdcr(): CssBuilder<T & {
669
881
  flexDirection: import("csstype").Property.FlexDirection | undefined;
670
882
  }>;
883
+ /** Sets `flexDirection: value`. */
671
884
  fd(value: Properties["flexDirection"]): CssBuilder<T & {
672
885
  flexDirection: import("csstype").Property.FlexDirection | undefined;
673
886
  }>;
887
+ /** Sets `float: "left"`. */
674
888
  get fl(): CssBuilder<T & {
675
889
  float: import("csstype").Property.Float | undefined;
676
890
  }>;
891
+ /** Sets `float: "right"`. */
677
892
  get fr(): CssBuilder<T & {
678
893
  float: import("csstype").Property.Float | undefined;
679
894
  }>;
895
+ /** Sets `float: value`. */
680
896
  float(value: Properties["float"]): CssBuilder<T & {
681
897
  float: import("csstype").Property.Float | undefined;
682
898
  }>;
899
+ /** Sets `fontWeight: "normal"`. */
683
900
  get normal(): CssBuilder<T & {
684
901
  fontWeight: import("csstype").Property.FontWeight | undefined;
685
902
  }>;
903
+ /** Sets `fontWeight: "bold"`. */
686
904
  get b(): CssBuilder<T & {
687
905
  fontWeight: import("csstype").Property.FontWeight | undefined;
688
906
  }>;
907
+ /** Sets `fontWeight: 100`. */
689
908
  get fw1(): CssBuilder<T & {
690
909
  fontWeight: import("csstype").Property.FontWeight | undefined;
691
910
  }>;
911
+ /** Sets `fontWeight: 200`. */
692
912
  get fw2(): CssBuilder<T & {
693
913
  fontWeight: import("csstype").Property.FontWeight | undefined;
694
914
  }>;
915
+ /** Sets `fontWeight: 300`. */
695
916
  get fw3(): CssBuilder<T & {
696
917
  fontWeight: import("csstype").Property.FontWeight | undefined;
697
918
  }>;
919
+ /** Sets `fontWeight: 400`. */
698
920
  get fw4(): CssBuilder<T & {
699
921
  fontWeight: import("csstype").Property.FontWeight | undefined;
700
922
  }>;
923
+ /** Sets `fontWeight: 500`. */
701
924
  get fw5(): CssBuilder<T & {
702
925
  fontWeight: import("csstype").Property.FontWeight | undefined;
703
926
  }>;
927
+ /** Sets `fontWeight: 600`. */
704
928
  get fw6(): CssBuilder<T & {
705
929
  fontWeight: import("csstype").Property.FontWeight | undefined;
706
930
  }>;
931
+ /** Sets `fontWeight: 700`. */
707
932
  get fw7(): CssBuilder<T & {
708
933
  fontWeight: import("csstype").Property.FontWeight | undefined;
709
934
  }>;
935
+ /** Sets `fontWeight: 800`. */
710
936
  get fw8(): CssBuilder<T & {
711
937
  fontWeight: import("csstype").Property.FontWeight | undefined;
712
938
  }>;
939
+ /** Sets `fontWeight: 900`. */
713
940
  get fw9(): CssBuilder<T & {
714
941
  fontWeight: import("csstype").Property.FontWeight | undefined;
715
942
  }>;
943
+ /** Sets `fontWeight: value`. */
716
944
  fw(value: Properties["fontWeight"]): CssBuilder<T & {
717
945
  fontWeight: import("csstype").Property.FontWeight | undefined;
718
946
  }>;
947
+ /** Sets `gridTemplateColumns: value`. */
719
948
  gtc(value: Properties["gridTemplateColumns"]): CssBuilder<T & {
720
- gridTemplateColumns: import("csstype").Property.GridTemplateColumns<0 | (string & {})> | undefined;
949
+ gridTemplateColumns: import("csstype").Property.GridTemplateColumns<string | 0> | undefined;
721
950
  }>;
951
+ /** Sets `gridTemplateRows: value`. */
722
952
  gtr(value: Properties["gridTemplateRows"]): CssBuilder<T & {
723
- gridTemplateRows: import("csstype").Property.GridTemplateRows<0 | (string & {})> | undefined;
953
+ gridTemplateRows: import("csstype").Property.GridTemplateRows<string | 0> | undefined;
724
954
  }>;
955
+ /** Sets `gridRow: value`. */
725
956
  gr(value: Properties["gridRow"]): CssBuilder<T & {
726
957
  gridRow: import("csstype").Property.GridRow | undefined;
727
958
  }>;
959
+ /** Sets `gridColumn: value`. */
728
960
  gc(value: Properties["gridColumn"]): CssBuilder<T & {
729
961
  gridColumn: import("csstype").Property.GridColumn | undefined;
730
962
  }>;
963
+ /** Sets `gap: "0px"`. */
731
964
  get gap0(): CssBuilder<T & {
732
- gap: import("csstype").Property.Gap<0 | (string & {})> | undefined;
965
+ gap: import("csstype").Property.Gap<string | 0> | undefined;
733
966
  }>;
967
+ /** Sets `gap: "8px"`. */
734
968
  get gap1(): CssBuilder<T & {
735
- gap: import("csstype").Property.Gap<0 | (string & {})> | undefined;
969
+ gap: import("csstype").Property.Gap<string | 0> | undefined;
736
970
  }>;
971
+ /** Sets `gap: "16px"`. */
737
972
  get gap2(): CssBuilder<T & {
738
- gap: import("csstype").Property.Gap<0 | (string & {})> | undefined;
973
+ gap: import("csstype").Property.Gap<string | 0> | undefined;
739
974
  }>;
975
+ /** Sets `gap: "24px"`. */
740
976
  get gap3(): CssBuilder<T & {
741
- gap: import("csstype").Property.Gap<0 | (string & {})> | undefined;
977
+ gap: import("csstype").Property.Gap<string | 0> | undefined;
742
978
  }>;
979
+ /** Sets `gap: "32px"`. */
743
980
  get gap4(): CssBuilder<T & {
744
- gap: import("csstype").Property.Gap<0 | (string & {})> | undefined;
981
+ gap: import("csstype").Property.Gap<string | 0> | undefined;
745
982
  }>;
983
+ /** Sets `gap: "40px"`. */
746
984
  get gap5(): CssBuilder<T & {
747
- gap: import("csstype").Property.Gap<0 | (string & {})> | undefined;
985
+ gap: import("csstype").Property.Gap<string | 0> | undefined;
748
986
  }>;
987
+ /** Sets `gap: "48px"`. */
749
988
  get gap6(): CssBuilder<T & {
750
- gap: import("csstype").Property.Gap<0 | (string & {})> | undefined;
989
+ gap: import("csstype").Property.Gap<string | 0> | undefined;
751
990
  }>;
991
+ /** Sets `gap: "56px"`. */
752
992
  get gap7(): CssBuilder<T & {
753
- gap: import("csstype").Property.Gap<0 | (string & {})> | undefined;
993
+ gap: import("csstype").Property.Gap<string | 0> | undefined;
754
994
  }>;
995
+ /** Sets `gap: "64px"`. */
755
996
  get gap8(): CssBuilder<T & {
756
- gap: import("csstype").Property.Gap<0 | (string & {})> | undefined;
997
+ gap: import("csstype").Property.Gap<string | 0> | undefined;
757
998
  }>;
999
+ /** Sets `gap: inc`. */
758
1000
  gap(inc: number | string): CssBuilder<T & {
759
- gap: import("csstype").Property.Gap<0 | (string & {})> | undefined;
1001
+ gap: import("csstype").Property.Gap<string | 0> | undefined;
760
1002
  }>;
1003
+ /** Sets `gap: px`. */
761
1004
  gapPx(px: number): CssBuilder<T & {
762
- gap: import("csstype").Property.Gap<0 | (string & {})> | undefined;
1005
+ gap: import("csstype").Property.Gap<string | 0> | undefined;
763
1006
  }>;
1007
+ /** Sets `rowGap: "0px"`. */
764
1008
  get rg0(): CssBuilder<T & {
765
- rowGap: import("csstype").Property.RowGap<0 | (string & {})> | undefined;
1009
+ rowGap: import("csstype").Property.RowGap<string | 0> | undefined;
766
1010
  }>;
1011
+ /** Sets `rowGap: "8px"`. */
767
1012
  get rg1(): CssBuilder<T & {
768
- rowGap: import("csstype").Property.RowGap<0 | (string & {})> | undefined;
1013
+ rowGap: import("csstype").Property.RowGap<string | 0> | undefined;
769
1014
  }>;
1015
+ /** Sets `rowGap: "16px"`. */
770
1016
  get rg2(): CssBuilder<T & {
771
- rowGap: import("csstype").Property.RowGap<0 | (string & {})> | undefined;
1017
+ rowGap: import("csstype").Property.RowGap<string | 0> | undefined;
772
1018
  }>;
1019
+ /** Sets `rowGap: "24px"`. */
773
1020
  get rg3(): CssBuilder<T & {
774
- rowGap: import("csstype").Property.RowGap<0 | (string & {})> | undefined;
1021
+ rowGap: import("csstype").Property.RowGap<string | 0> | undefined;
775
1022
  }>;
1023
+ /** Sets `rowGap: "32px"`. */
776
1024
  get rg4(): CssBuilder<T & {
777
- rowGap: import("csstype").Property.RowGap<0 | (string & {})> | undefined;
1025
+ rowGap: import("csstype").Property.RowGap<string | 0> | undefined;
778
1026
  }>;
1027
+ /** Sets `rowGap: "40px"`. */
779
1028
  get rg5(): CssBuilder<T & {
780
- rowGap: import("csstype").Property.RowGap<0 | (string & {})> | undefined;
1029
+ rowGap: import("csstype").Property.RowGap<string | 0> | undefined;
781
1030
  }>;
1031
+ /** Sets `rowGap: "48px"`. */
782
1032
  get rg6(): CssBuilder<T & {
783
- rowGap: import("csstype").Property.RowGap<0 | (string & {})> | undefined;
1033
+ rowGap: import("csstype").Property.RowGap<string | 0> | undefined;
784
1034
  }>;
1035
+ /** Sets `rowGap: "56px"`. */
785
1036
  get rg7(): CssBuilder<T & {
786
- rowGap: import("csstype").Property.RowGap<0 | (string & {})> | undefined;
1037
+ rowGap: import("csstype").Property.RowGap<string | 0> | undefined;
787
1038
  }>;
1039
+ /** Sets `rowGap: "64px"`. */
788
1040
  get rg8(): CssBuilder<T & {
789
- rowGap: import("csstype").Property.RowGap<0 | (string & {})> | undefined;
1041
+ rowGap: import("csstype").Property.RowGap<string | 0> | undefined;
790
1042
  }>;
1043
+ /** Sets `rowGap: inc`. */
791
1044
  rg(inc: number | string): CssBuilder<T & {
792
- rowGap: import("csstype").Property.RowGap<0 | (string & {})> | undefined;
1045
+ rowGap: import("csstype").Property.RowGap<string | 0> | undefined;
793
1046
  }>;
1047
+ /** Sets `rowGap: px`. */
794
1048
  rgPx(px: number): CssBuilder<T & {
795
- rowGap: import("csstype").Property.RowGap<0 | (string & {})> | undefined;
1049
+ rowGap: import("csstype").Property.RowGap<string | 0> | undefined;
796
1050
  }>;
1051
+ /** Sets `columnGap: "0px"`. */
797
1052
  get cg0(): CssBuilder<T & {
798
- columnGap: import("csstype").Property.ColumnGap<0 | (string & {})> | undefined;
1053
+ columnGap: import("csstype").Property.ColumnGap<string | 0> | undefined;
799
1054
  }>;
1055
+ /** Sets `columnGap: "8px"`. */
800
1056
  get cg1(): CssBuilder<T & {
801
- columnGap: import("csstype").Property.ColumnGap<0 | (string & {})> | undefined;
1057
+ columnGap: import("csstype").Property.ColumnGap<string | 0> | undefined;
802
1058
  }>;
1059
+ /** Sets `columnGap: "16px"`. */
803
1060
  get cg2(): CssBuilder<T & {
804
- columnGap: import("csstype").Property.ColumnGap<0 | (string & {})> | undefined;
1061
+ columnGap: import("csstype").Property.ColumnGap<string | 0> | undefined;
805
1062
  }>;
1063
+ /** Sets `columnGap: "24px"`. */
806
1064
  get cg3(): CssBuilder<T & {
807
- columnGap: import("csstype").Property.ColumnGap<0 | (string & {})> | undefined;
1065
+ columnGap: import("csstype").Property.ColumnGap<string | 0> | undefined;
808
1066
  }>;
1067
+ /** Sets `columnGap: "32px"`. */
809
1068
  get cg4(): CssBuilder<T & {
810
- columnGap: import("csstype").Property.ColumnGap<0 | (string & {})> | undefined;
1069
+ columnGap: import("csstype").Property.ColumnGap<string | 0> | undefined;
811
1070
  }>;
1071
+ /** Sets `columnGap: "40px"`. */
812
1072
  get cg5(): CssBuilder<T & {
813
- columnGap: import("csstype").Property.ColumnGap<0 | (string & {})> | undefined;
1073
+ columnGap: import("csstype").Property.ColumnGap<string | 0> | undefined;
814
1074
  }>;
1075
+ /** Sets `columnGap: "48px"`. */
815
1076
  get cg6(): CssBuilder<T & {
816
- columnGap: import("csstype").Property.ColumnGap<0 | (string & {})> | undefined;
1077
+ columnGap: import("csstype").Property.ColumnGap<string | 0> | undefined;
817
1078
  }>;
1079
+ /** Sets `columnGap: "56px"`. */
818
1080
  get cg7(): CssBuilder<T & {
819
- columnGap: import("csstype").Property.ColumnGap<0 | (string & {})> | undefined;
1081
+ columnGap: import("csstype").Property.ColumnGap<string | 0> | undefined;
820
1082
  }>;
1083
+ /** Sets `columnGap: "64px"`. */
821
1084
  get cg8(): CssBuilder<T & {
822
- columnGap: import("csstype").Property.ColumnGap<0 | (string & {})> | undefined;
1085
+ columnGap: import("csstype").Property.ColumnGap<string | 0> | undefined;
823
1086
  }>;
1087
+ /** Sets `columnGap: inc`. */
824
1088
  cg(inc: number | string): CssBuilder<T & {
825
- columnGap: import("csstype").Property.ColumnGap<0 | (string & {})> | undefined;
1089
+ columnGap: import("csstype").Property.ColumnGap<string | 0> | undefined;
826
1090
  }>;
1091
+ /** Sets `columnGap: px`. */
827
1092
  cgPx(px: number): CssBuilder<T & {
828
- columnGap: import("csstype").Property.ColumnGap<0 | (string & {})> | undefined;
1093
+ columnGap: import("csstype").Property.ColumnGap<string | 0> | undefined;
829
1094
  }>;
1095
+ /** Sets `height: "0px"`. */
830
1096
  get h0(): CssBuilder<T & {
831
- height: import("csstype").Property.Height<0 | (string & {})> | undefined;
1097
+ height: import("csstype").Property.Height<string | 0> | undefined;
832
1098
  }>;
1099
+ /** Sets `height: "8px"`. */
833
1100
  get h1(): CssBuilder<T & {
834
- height: import("csstype").Property.Height<0 | (string & {})> | undefined;
1101
+ height: import("csstype").Property.Height<string | 0> | undefined;
835
1102
  }>;
1103
+ /** Sets `height: "16px"`. */
836
1104
  get h2(): CssBuilder<T & {
837
- height: import("csstype").Property.Height<0 | (string & {})> | undefined;
1105
+ height: import("csstype").Property.Height<string | 0> | undefined;
838
1106
  }>;
1107
+ /** Sets `height: "24px"`. */
839
1108
  get h3(): CssBuilder<T & {
840
- height: import("csstype").Property.Height<0 | (string & {})> | undefined;
1109
+ height: import("csstype").Property.Height<string | 0> | undefined;
841
1110
  }>;
1111
+ /** Sets `height: "32px"`. */
842
1112
  get h4(): CssBuilder<T & {
843
- height: import("csstype").Property.Height<0 | (string & {})> | undefined;
1113
+ height: import("csstype").Property.Height<string | 0> | undefined;
844
1114
  }>;
1115
+ /** Sets `height: "40px"`. */
845
1116
  get h5(): CssBuilder<T & {
846
- height: import("csstype").Property.Height<0 | (string & {})> | undefined;
1117
+ height: import("csstype").Property.Height<string | 0> | undefined;
847
1118
  }>;
1119
+ /** Sets `height: "48px"`. */
848
1120
  get h6(): CssBuilder<T & {
849
- height: import("csstype").Property.Height<0 | (string & {})> | undefined;
1121
+ height: import("csstype").Property.Height<string | 0> | undefined;
850
1122
  }>;
1123
+ /** Sets `height: "56px"`. */
851
1124
  get h7(): CssBuilder<T & {
852
- height: import("csstype").Property.Height<0 | (string & {})> | undefined;
1125
+ height: import("csstype").Property.Height<string | 0> | undefined;
853
1126
  }>;
1127
+ /** Sets `height: "64px"`. */
854
1128
  get h8(): CssBuilder<T & {
855
- height: import("csstype").Property.Height<0 | (string & {})> | undefined;
1129
+ height: import("csstype").Property.Height<string | 0> | undefined;
856
1130
  }>;
1131
+ /** Sets `height: inc`. */
857
1132
  h(inc: number | string): CssBuilder<T & {
858
- height: import("csstype").Property.Height<0 | (string & {})> | undefined;
1133
+ height: import("csstype").Property.Height<string | 0> | undefined;
859
1134
  }>;
1135
+ /** Sets `height: px`. */
860
1136
  hPx(px: number): CssBuilder<T & {
861
- height: import("csstype").Property.Height<0 | (string & {})> | undefined;
1137
+ height: import("csstype").Property.Height<string | 0> | undefined;
862
1138
  }>;
1139
+ /** Sets `height: "25%"`. */
863
1140
  get h25(): CssBuilder<T & {
864
- height: import("csstype").Property.Height<0 | (string & {})> | undefined;
1141
+ height: import("csstype").Property.Height<string | 0> | undefined;
865
1142
  }>;
1143
+ /** Sets `height: "50%"`. */
866
1144
  get h50(): CssBuilder<T & {
867
- height: import("csstype").Property.Height<0 | (string & {})> | undefined;
1145
+ height: import("csstype").Property.Height<string | 0> | undefined;
868
1146
  }>;
1147
+ /** Sets `height: "75%"`. */
869
1148
  get h75(): CssBuilder<T & {
870
- height: import("csstype").Property.Height<0 | (string & {})> | undefined;
1149
+ height: import("csstype").Property.Height<string | 0> | undefined;
871
1150
  }>;
1151
+ /** Sets `height: "100%"`. */
872
1152
  get h100(): CssBuilder<T & {
873
- height: import("csstype").Property.Height<0 | (string & {})> | undefined;
1153
+ height: import("csstype").Property.Height<string | 0> | undefined;
874
1154
  }>;
1155
+ /** Sets `height: "25vh"`. */
875
1156
  get vh25(): CssBuilder<T & {
876
- height: import("csstype").Property.Height<0 | (string & {})> | undefined;
1157
+ height: import("csstype").Property.Height<string | 0> | undefined;
877
1158
  }>;
1159
+ /** Sets `height: "50vh"`. */
878
1160
  get vh50(): CssBuilder<T & {
879
- height: import("csstype").Property.Height<0 | (string & {})> | undefined;
1161
+ height: import("csstype").Property.Height<string | 0> | undefined;
880
1162
  }>;
1163
+ /** Sets `height: "75vh"`. */
881
1164
  get vh75(): CssBuilder<T & {
882
- height: import("csstype").Property.Height<0 | (string & {})> | undefined;
1165
+ height: import("csstype").Property.Height<string | 0> | undefined;
883
1166
  }>;
1167
+ /** Sets `height: "100vh"`. */
884
1168
  get vh100(): CssBuilder<T & {
885
- height: import("csstype").Property.Height<0 | (string & {})> | undefined;
1169
+ height: import("csstype").Property.Height<string | 0> | undefined;
886
1170
  }>;
1171
+ /** Sets `minHeight: 0`. */
887
1172
  get mh0(): CssBuilder<T & {
888
- minHeight: import("csstype").Property.MinHeight<0 | (string & {})> | undefined;
1173
+ minHeight: import("csstype").Property.MinHeight<string | 0> | undefined;
889
1174
  }>;
1175
+ /** Sets `minHeight: "25%"`. */
890
1176
  get mh25(): CssBuilder<T & {
891
- minHeight: import("csstype").Property.MinHeight<0 | (string & {})> | undefined;
1177
+ minHeight: import("csstype").Property.MinHeight<string | 0> | undefined;
892
1178
  }>;
1179
+ /** Sets `minHeight: "50%"`. */
893
1180
  get mh50(): CssBuilder<T & {
894
- minHeight: import("csstype").Property.MinHeight<0 | (string & {})> | undefined;
1181
+ minHeight: import("csstype").Property.MinHeight<string | 0> | undefined;
895
1182
  }>;
1183
+ /** Sets `minHeight: "75%"`. */
896
1184
  get mh75(): CssBuilder<T & {
897
- minHeight: import("csstype").Property.MinHeight<0 | (string & {})> | undefined;
1185
+ minHeight: import("csstype").Property.MinHeight<string | 0> | undefined;
898
1186
  }>;
1187
+ /** Sets `minHeight: "100%"`. */
899
1188
  get mh100(): CssBuilder<T & {
900
- minHeight: import("csstype").Property.MinHeight<0 | (string & {})> | undefined;
1189
+ minHeight: import("csstype").Property.MinHeight<string | 0> | undefined;
901
1190
  }>;
1191
+ /** Sets `minHeight: "100vh"`. */
902
1192
  get mvh100(): CssBuilder<T & {
903
- minHeight: import("csstype").Property.MinHeight<0 | (string & {})> | undefined;
1193
+ minHeight: import("csstype").Property.MinHeight<string | 0> | undefined;
904
1194
  }>;
1195
+ /** Sets `minHeight: value`. */
905
1196
  mh(value: Properties["minHeight"]): CssBuilder<T & {
906
- minHeight: import("csstype").Property.MinHeight<0 | (string & {})> | undefined;
1197
+ minHeight: import("csstype").Property.MinHeight<string | 0> | undefined;
907
1198
  }>;
1199
+ /** Sets `minHeight: px`. */
908
1200
  mhPx(px: number): CssBuilder<T & {
909
- minHeight: import("csstype").Property.MinHeight<0 | (string & {})> | undefined;
1201
+ minHeight: import("csstype").Property.MinHeight<string | 0> | undefined;
910
1202
  }>;
1203
+ /** Sets `maxHeight: "0"`. */
911
1204
  get maxh0(): CssBuilder<T & {
912
- maxHeight: import("csstype").Property.MaxHeight<0 | (string & {})> | undefined;
1205
+ maxHeight: import("csstype").Property.MaxHeight<string | 0> | undefined;
913
1206
  }>;
1207
+ /** Sets `maxHeight: "25%"`. */
914
1208
  get maxh25(): CssBuilder<T & {
915
- maxHeight: import("csstype").Property.MaxHeight<0 | (string & {})> | undefined;
1209
+ maxHeight: import("csstype").Property.MaxHeight<string | 0> | undefined;
916
1210
  }>;
1211
+ /** Sets `maxHeight: "50%"`. */
917
1212
  get maxh50(): CssBuilder<T & {
918
- maxHeight: import("csstype").Property.MaxHeight<0 | (string & {})> | undefined;
1213
+ maxHeight: import("csstype").Property.MaxHeight<string | 0> | undefined;
919
1214
  }>;
1215
+ /** Sets `maxHeight: "75%"`. */
920
1216
  get maxh75(): CssBuilder<T & {
921
- maxHeight: import("csstype").Property.MaxHeight<0 | (string & {})> | undefined;
1217
+ maxHeight: import("csstype").Property.MaxHeight<string | 0> | undefined;
922
1218
  }>;
1219
+ /** Sets `maxHeight: "100%"`. */
923
1220
  get maxh100(): CssBuilder<T & {
924
- maxHeight: import("csstype").Property.MaxHeight<0 | (string & {})> | undefined;
1221
+ maxHeight: import("csstype").Property.MaxHeight<string | 0> | undefined;
925
1222
  }>;
1223
+ /** Sets `maxHeight: value`. */
926
1224
  maxh(value: Properties["maxHeight"]): CssBuilder<T & {
927
- maxHeight: import("csstype").Property.MaxHeight<0 | (string & {})> | undefined;
1225
+ maxHeight: import("csstype").Property.MaxHeight<string | 0> | undefined;
928
1226
  }>;
1227
+ /** Sets `maxHeight: px`. */
929
1228
  maxhPx(px: number): CssBuilder<T & {
930
- maxHeight: import("csstype").Property.MaxHeight<0 | (string & {})> | undefined;
1229
+ maxHeight: import("csstype").Property.MaxHeight<string | 0> | undefined;
931
1230
  }>;
1231
+ /** Sets `height: px; width: px`. */
1232
+ sqPx(px: number): CssBuilder<T & {
1233
+ height: import("csstype").Property.Height<string | 0> | undefined;
1234
+ } & {
1235
+ width: import("csstype").Property.Width<string | 0> | undefined;
1236
+ }>;
1237
+ /** Sets `overflow: "hidden"; display: "-webkit-box"; WebkitLineClamp: 1; textOverflow: "ellipsis"`. */
932
1238
  get lineClamp1(): CssBuilder<T & {
933
1239
  overflow: import("csstype").Property.Overflow | undefined;
934
1240
  } & {
935
1241
  display: import("csstype").Property.Display | undefined;
936
- } & {
937
- WebkitBoxOrient: import("csstype").Property.BoxOrient | undefined;
938
1242
  } & {
939
1243
  WebkitLineClamp: import("csstype").Property.WebkitLineClamp | undefined;
940
1244
  } & {
941
1245
  textOverflow: import("csstype").Property.TextOverflow | undefined;
942
1246
  }>;
1247
+ /** Sets `overflow: "hidden"; display: "-webkit-box"; WebkitLineClamp: 2; textOverflow: "ellipsis"`. */
943
1248
  get lineClamp2(): CssBuilder<T & {
944
1249
  overflow: import("csstype").Property.Overflow | undefined;
945
1250
  } & {
946
1251
  display: import("csstype").Property.Display | undefined;
947
- } & {
948
- WebkitBoxOrient: import("csstype").Property.BoxOrient | undefined;
949
1252
  } & {
950
1253
  WebkitLineClamp: import("csstype").Property.WebkitLineClamp | undefined;
951
1254
  } & {
952
1255
  textOverflow: import("csstype").Property.TextOverflow | undefined;
953
1256
  }>;
1257
+ /** Sets `overflow: "hidden"; display: "-webkit-box"; WebkitLineClamp: 3; textOverflow: "ellipsis"`. */
954
1258
  get lineClamp3(): CssBuilder<T & {
955
1259
  overflow: import("csstype").Property.Overflow | undefined;
956
1260
  } & {
957
1261
  display: import("csstype").Property.Display | undefined;
958
- } & {
959
- WebkitBoxOrient: import("csstype").Property.BoxOrient | undefined;
960
1262
  } & {
961
1263
  WebkitLineClamp: import("csstype").Property.WebkitLineClamp | undefined;
962
1264
  } & {
963
1265
  textOverflow: import("csstype").Property.TextOverflow | undefined;
964
1266
  }>;
1267
+ /** Sets `overflow: "hidden"; display: "-webkit-box"; WebkitLineClamp: 4; textOverflow: "ellipsis"`. */
965
1268
  get lineClamp4(): CssBuilder<T & {
966
1269
  overflow: import("csstype").Property.Overflow | undefined;
967
1270
  } & {
968
1271
  display: import("csstype").Property.Display | undefined;
969
- } & {
970
- WebkitBoxOrient: import("csstype").Property.BoxOrient | undefined;
971
1272
  } & {
972
1273
  WebkitLineClamp: import("csstype").Property.WebkitLineClamp | undefined;
973
1274
  } & {
974
1275
  textOverflow: import("csstype").Property.TextOverflow | undefined;
975
1276
  }>;
1277
+ /** Sets `overflow: "hidden"; display: "-webkit-box"; WebkitLineClamp: 5; textOverflow: "ellipsis"`. */
976
1278
  get lineClamp5(): CssBuilder<T & {
977
1279
  overflow: import("csstype").Property.Overflow | undefined;
978
1280
  } & {
979
1281
  display: import("csstype").Property.Display | undefined;
980
- } & {
981
- WebkitBoxOrient: import("csstype").Property.BoxOrient | undefined;
982
1282
  } & {
983
1283
  WebkitLineClamp: import("csstype").Property.WebkitLineClamp | undefined;
984
1284
  } & {
985
1285
  textOverflow: import("csstype").Property.TextOverflow | undefined;
986
1286
  }>;
1287
+ /** Sets `overflow: "hidden"; display: "-webkit-box"; WebkitLineClamp: 6; textOverflow: "ellipsis"`. */
987
1288
  get lineClamp6(): CssBuilder<T & {
988
1289
  overflow: import("csstype").Property.Overflow | undefined;
989
1290
  } & {
990
1291
  display: import("csstype").Property.Display | undefined;
991
- } & {
992
- WebkitBoxOrient: import("csstype").Property.BoxOrient | undefined;
993
1292
  } & {
994
1293
  WebkitLineClamp: import("csstype").Property.WebkitLineClamp | undefined;
995
1294
  } & {
996
1295
  textOverflow: import("csstype").Property.TextOverflow | undefined;
997
1296
  }>;
1297
+ /** Sets `WebkitLineClamp: "unset"`. */
998
1298
  get lineClampNone(): CssBuilder<T & {
999
1299
  WebkitLineClamp: import("csstype").Property.WebkitLineClamp | undefined;
1000
1300
  }>;
1301
+ /** Sets `objectFit: "contain"`. */
1001
1302
  get objectContain(): CssBuilder<T & {
1002
1303
  objectFit: import("csstype").Property.ObjectFit | undefined;
1003
1304
  }>;
1305
+ /** Sets `objectFit: "cover"`. */
1004
1306
  get objectCover(): CssBuilder<T & {
1005
1307
  objectFit: import("csstype").Property.ObjectFit | undefined;
1006
1308
  }>;
1309
+ /** Sets `objectFit: "fill"`. */
1007
1310
  get objectFill(): CssBuilder<T & {
1008
1311
  objectFit: import("csstype").Property.ObjectFit | undefined;
1009
1312
  }>;
1313
+ /** Sets `objectFit: "none"`. */
1010
1314
  get objectNone(): CssBuilder<T & {
1011
1315
  objectFit: import("csstype").Property.ObjectFit | undefined;
1012
1316
  }>;
1317
+ /** Sets `objectFit: "scale-down"`. */
1013
1318
  get objectScaleDown(): CssBuilder<T & {
1014
1319
  objectFit: import("csstype").Property.ObjectFit | undefined;
1015
1320
  }>;
1321
+ /** Sets `objectFit: value`. */
1016
1322
  objectFit(value: Properties["objectFit"]): CssBuilder<T & {
1017
1323
  objectFit: import("csstype").Property.ObjectFit | undefined;
1018
1324
  }>;
1325
+ /** Sets `outline: "1px solid"`. */
1019
1326
  get outline1(): CssBuilder<T & {
1020
- outline: import("csstype").Property.Outline<0 | (string & {})> | undefined;
1327
+ outline: import("csstype").Property.Outline<string | 0> | undefined;
1021
1328
  }>;
1329
+ /** Sets `outline: "1px solid transparent"`. */
1022
1330
  get outlineTransparent(): CssBuilder<T & {
1023
- outline: import("csstype").Property.Outline<0 | (string & {})> | undefined;
1331
+ outline: import("csstype").Property.Outline<string | 0> | undefined;
1024
1332
  }>;
1333
+ /** Sets `outline: "0"`. */
1025
1334
  get outline0(): CssBuilder<T & {
1026
- outline: import("csstype").Property.Outline<0 | (string & {})> | undefined;
1335
+ outline: import("csstype").Property.Outline<string | 0> | undefined;
1027
1336
  }>;
1337
+ /** Sets `outline: value`. */
1028
1338
  outline(value: Properties["outline"]): CssBuilder<T & {
1029
- outline: import("csstype").Property.Outline<0 | (string & {})> | undefined;
1339
+ outline: import("csstype").Property.Outline<string | 0> | undefined;
1030
1340
  }>;
1341
+ /** Sets `overflow: "visible"`. */
1031
1342
  get overflowVisible(): CssBuilder<T & {
1032
1343
  overflow: import("csstype").Property.Overflow | undefined;
1033
1344
  }>;
1345
+ /** Sets `overflow: "hidden"`. */
1034
1346
  get overflowHidden(): CssBuilder<T & {
1035
1347
  overflow: import("csstype").Property.Overflow | undefined;
1036
1348
  }>;
1349
+ /** Sets `overflow: "scroll"`. */
1037
1350
  get overflowScroll(): CssBuilder<T & {
1038
1351
  overflow: import("csstype").Property.Overflow | undefined;
1039
1352
  }>;
1353
+ /** Sets `overflow: "auto"`. */
1040
1354
  get overflowAuto(): CssBuilder<T & {
1041
1355
  overflow: import("csstype").Property.Overflow | undefined;
1042
1356
  }>;
1357
+ /** Sets `overflow: value`. */
1043
1358
  overflow(value: Properties["overflow"]): CssBuilder<T & {
1044
1359
  overflow: import("csstype").Property.Overflow | undefined;
1045
1360
  }>;
1361
+ /** Sets `overflowY: "visible"`. */
1046
1362
  get overflowYVisible(): CssBuilder<T & {
1047
1363
  overflowY: import("csstype").Property.OverflowY | undefined;
1048
1364
  }>;
1365
+ /** Sets `overflowY: "hidden"`. */
1049
1366
  get overflowYHidden(): CssBuilder<T & {
1050
1367
  overflowY: import("csstype").Property.OverflowY | undefined;
1051
1368
  }>;
1369
+ /** Sets `overflowY: "scroll"`. */
1052
1370
  get overflowYScroll(): CssBuilder<T & {
1053
1371
  overflowY: import("csstype").Property.OverflowY | undefined;
1054
1372
  }>;
1373
+ /** Sets `overflowY: "auto"`. */
1055
1374
  get overflowYAuto(): CssBuilder<T & {
1056
1375
  overflowY: import("csstype").Property.OverflowY | undefined;
1057
1376
  }>;
1377
+ /** Sets `overflowY: value`. */
1058
1378
  overflowY(value: Properties["overflowY"]): CssBuilder<T & {
1059
1379
  overflowY: import("csstype").Property.OverflowY | undefined;
1060
1380
  }>;
1381
+ /** Sets `overflowX: "visible"`. */
1061
1382
  get overflowXVisible(): CssBuilder<T & {
1062
1383
  overflowX: import("csstype").Property.OverflowX | undefined;
1063
1384
  }>;
1385
+ /** Sets `overflowX: "hidden"`. */
1064
1386
  get overflowXHidden(): CssBuilder<T & {
1065
1387
  overflowX: import("csstype").Property.OverflowX | undefined;
1066
1388
  }>;
1389
+ /** Sets `overflowX: "scroll"`. */
1067
1390
  get overflowXScroll(): CssBuilder<T & {
1068
1391
  overflowX: import("csstype").Property.OverflowX | undefined;
1069
1392
  }>;
1393
+ /** Sets `overflowX: "auto"`. */
1070
1394
  get overflowXAuto(): CssBuilder<T & {
1071
1395
  overflowX: import("csstype").Property.OverflowX | undefined;
1072
1396
  }>;
1397
+ /** Sets `overflowX: value`. */
1073
1398
  overflowX(value: Properties["overflowX"]): CssBuilder<T & {
1074
1399
  overflowX: import("csstype").Property.OverflowX | undefined;
1075
1400
  }>;
1401
+ /** Sets `position: "absolute"`. */
1076
1402
  get absolute(): CssBuilder<T & {
1077
1403
  position: import("csstype").Property.Position | undefined;
1078
1404
  }>;
1405
+ /** Sets `position: "fixed"`. */
1079
1406
  get fixed(): CssBuilder<T & {
1080
1407
  position: import("csstype").Property.Position | undefined;
1081
1408
  }>;
1409
+ /** Sets `position: "static"`. */
1082
1410
  get static(): CssBuilder<T & {
1083
1411
  position: import("csstype").Property.Position | undefined;
1084
1412
  }>;
1413
+ /** Sets `position: "relative"`. */
1085
1414
  get relative(): CssBuilder<T & {
1086
1415
  position: import("csstype").Property.Position | undefined;
1087
1416
  }>;
1417
+ /** Sets `position: "sticky"`. */
1088
1418
  get sticky(): CssBuilder<T & {
1089
1419
  position: import("csstype").Property.Position | undefined;
1090
1420
  }>;
1421
+ /** Sets `position: value`. */
1091
1422
  position(value: Properties["position"]): CssBuilder<T & {
1092
1423
  position: import("csstype").Property.Position | undefined;
1093
1424
  }>;
1425
+ /** Sets `color: "rgba(254,254,254,1)"`. */
1094
1426
  get white(): CssBuilder<T & {
1095
1427
  color: import("csstype").Property.Color | undefined;
1096
1428
  }>;
1429
+ /** Sets `color: "rgba(0,0,0,0)"`. */
1097
1430
  get transparent(): CssBuilder<T & {
1098
1431
  color: import("csstype").Property.Color | undefined;
1099
1432
  }>;
1433
+ /** Sets `color: "rgba(255,253,253,1)"`. */
1100
1434
  get gray50(): CssBuilder<T & {
1101
1435
  color: import("csstype").Property.Color | undefined;
1102
1436
  }>;
1437
+ /** Sets `color: "rgba(247,245,245,1)"`. */
1103
1438
  get gray100(): CssBuilder<T & {
1104
1439
  color: import("csstype").Property.Color | undefined;
1105
1440
  }>;
1441
+ /** Sets `color: "rgba(236,235,235,1)"`. */
1106
1442
  get gray200(): CssBuilder<T & {
1107
1443
  color: import("csstype").Property.Color | undefined;
1108
1444
  }>;
1445
+ /** Sets `color: "rgba(221,220,220,1)"`. */
1109
1446
  get gray300(): CssBuilder<T & {
1110
1447
  color: import("csstype").Property.Color | undefined;
1111
1448
  }>;
1449
+ /** Sets `color: "rgba(201,201,201,1)"`. */
1112
1450
  get gray400(): CssBuilder<T & {
1113
1451
  color: import("csstype").Property.Color | undefined;
1114
1452
  }>;
1453
+ /** Sets `color: "rgba(175,175,175,1)"`. */
1115
1454
  get gray500(): CssBuilder<T & {
1116
1455
  color: import("csstype").Property.Color | undefined;
1117
1456
  }>;
1457
+ /** Sets `color: "rgba(141,141,141,1)"`. */
1118
1458
  get gray600(): CssBuilder<T & {
1119
1459
  color: import("csstype").Property.Color | undefined;
1120
1460
  }>;
1461
+ /** Sets `color: "rgba(100,100,100,1)"`. */
1121
1462
  get gray700(): CssBuilder<T & {
1122
1463
  color: import("csstype").Property.Color | undefined;
1123
1464
  }>;
1465
+ /** Sets `color: "rgba(53,53,53,1)"`. */
1124
1466
  get gray800(): CssBuilder<T & {
1125
1467
  color: import("csstype").Property.Color | undefined;
1126
1468
  }>;
1469
+ /** Sets `color: "rgba(36,36,36,1)"`. */
1127
1470
  get gray900(): CssBuilder<T & {
1128
1471
  color: import("csstype").Property.Color | undefined;
1129
1472
  }>;
1473
+ /** Sets `color: "rgba(240,249,255,1)"`. */
1130
1474
  get lightBlue50(): CssBuilder<T & {
1131
1475
  color: import("csstype").Property.Color | undefined;
1132
1476
  }>;
1477
+ /** Sets `color: "rgba(224,242,254,1)"`. */
1133
1478
  get lightBlue100(): CssBuilder<T & {
1134
1479
  color: import("csstype").Property.Color | undefined;
1135
1480
  }>;
1481
+ /** Sets `color: "rgba(186,230,253,1)"`. */
1136
1482
  get lightBlue200(): CssBuilder<T & {
1137
1483
  color: import("csstype").Property.Color | undefined;
1138
1484
  }>;
1485
+ /** Sets `color: "rgba(125,211,252,1)"`. */
1139
1486
  get lightBlue300(): CssBuilder<T & {
1140
1487
  color: import("csstype").Property.Color | undefined;
1141
1488
  }>;
1489
+ /** Sets `color: "rgba(56,189,248,1)"`. */
1142
1490
  get lightBlue400(): CssBuilder<T & {
1143
1491
  color: import("csstype").Property.Color | undefined;
1144
1492
  }>;
1493
+ /** Sets `color: "rgba(14,165,233,1)"`. */
1145
1494
  get lightBlue500(): CssBuilder<T & {
1146
1495
  color: import("csstype").Property.Color | undefined;
1147
1496
  }>;
1497
+ /** Sets `color: "rgba(2,143,199,1)"`. */
1148
1498
  get lightBlue600(): CssBuilder<T & {
1149
1499
  color: import("csstype").Property.Color | undefined;
1150
1500
  }>;
1501
+ /** Sets `color: "rgba(3,105,161,1)"`. */
1151
1502
  get lightBlue700(): CssBuilder<T & {
1152
1503
  color: import("csstype").Property.Color | undefined;
1153
1504
  }>;
1505
+ /** Sets `color: "rgba(7,89,133,1)"`. */
1154
1506
  get lightBlue800(): CssBuilder<T & {
1155
1507
  color: import("csstype").Property.Color | undefined;
1156
1508
  }>;
1509
+ /** Sets `color: "rgba(12,74,110,1)"`. */
1157
1510
  get lightBlue900(): CssBuilder<T & {
1158
1511
  color: import("csstype").Property.Color | undefined;
1159
1512
  }>;
1513
+ /** Sets `color: "rgba(255,242,242,1)"`. */
1160
1514
  get red50(): CssBuilder<T & {
1161
1515
  color: import("csstype").Property.Color | undefined;
1162
1516
  }>;
1517
+ /** Sets `color: "rgba(253,210,209,1)"`. */
1163
1518
  get red100(): CssBuilder<T & {
1164
1519
  color: import("csstype").Property.Color | undefined;
1165
1520
  }>;
1521
+ /** Sets `color: "rgba(249,181,177,1)"`. */
1166
1522
  get red200(): CssBuilder<T & {
1167
1523
  color: import("csstype").Property.Color | undefined;
1168
1524
  }>;
1525
+ /** Sets `color: "rgba(242,155,148,1)"`. */
1169
1526
  get red300(): CssBuilder<T & {
1170
1527
  color: import("csstype").Property.Color | undefined;
1171
1528
  }>;
1529
+ /** Sets `color: "rgba(232,133,122,1)"`. */
1172
1530
  get red400(): CssBuilder<T & {
1173
1531
  color: import("csstype").Property.Color | undefined;
1174
1532
  }>;
1533
+ /** Sets `color: "rgba(218,114,100,1)"`. */
1175
1534
  get red500(): CssBuilder<T & {
1176
1535
  color: import("csstype").Property.Color | undefined;
1177
1536
  }>;
1537
+ /** Sets `color: "rgba(200,98,81,1)"`. */
1178
1538
  get red600(): CssBuilder<T & {
1179
1539
  color: import("csstype").Property.Color | undefined;
1180
1540
  }>;
1541
+ /** Sets `color: "rgba(176,83,73,1)"`. */
1181
1542
  get red700(): CssBuilder<T & {
1182
1543
  color: import("csstype").Property.Color | undefined;
1183
1544
  }>;
1545
+ /** Sets `color: "rgba(149,68,64,1)"`. */
1184
1546
  get red800(): CssBuilder<T & {
1185
1547
  color: import("csstype").Property.Color | undefined;
1186
1548
  }>;
1549
+ /** Sets `color: "rgba(120,54,54,1)"`. */
1187
1550
  get red900(): CssBuilder<T & {
1188
1551
  color: import("csstype").Property.Color | undefined;
1189
1552
  }>;
1553
+ /** Sets `color: "rgba(255,254,242,1)"`. */
1190
1554
  get yellow50(): CssBuilder<T & {
1191
1555
  color: import("csstype").Property.Color | undefined;
1192
1556
  }>;
1557
+ /** Sets `color: "rgba(255,254,212,1)"`. */
1193
1558
  get yellow100(): CssBuilder<T & {
1194
1559
  color: import("csstype").Property.Color | undefined;
1195
1560
  }>;
1561
+ /** Sets `color: "rgba(255,250,180,1)"`. */
1196
1562
  get yellow200(): CssBuilder<T & {
1197
1563
  color: import("csstype").Property.Color | undefined;
1198
1564
  }>;
1565
+ /** Sets `color: "rgba(255,240,150,1)"`. */
1199
1566
  get yellow300(): CssBuilder<T & {
1200
1567
  color: import("csstype").Property.Color | undefined;
1201
1568
  }>;
1569
+ /** Sets `color: "rgba(255,225,123,1)"`. */
1202
1570
  get yellow400(): CssBuilder<T & {
1203
1571
  color: import("csstype").Property.Color | undefined;
1204
1572
  }>;
1573
+ /** Sets `color: "rgba(255,204,99,1)"`. */
1205
1574
  get yellow500(): CssBuilder<T & {
1206
1575
  color: import("csstype").Property.Color | undefined;
1207
1576
  }>;
1577
+ /** Sets `color: "rgba(246,177,78,1)"`. */
1208
1578
  get yellow600(): CssBuilder<T & {
1209
1579
  color: import("csstype").Property.Color | undefined;
1210
1580
  }>;
1581
+ /** Sets `color: "rgba(207,150,73,1)"`. */
1211
1582
  get yellow700(): CssBuilder<T & {
1212
1583
  color: import("csstype").Property.Color | undefined;
1213
1584
  }>;
1585
+ /** Sets `color: "rgba(164,120,66,1)"`. */
1214
1586
  get yellow800(): CssBuilder<T & {
1215
1587
  color: import("csstype").Property.Color | undefined;
1216
1588
  }>;
1589
+ /** Sets `color: "rgba(120,89,54,1)"`. */
1217
1590
  get yellow900(): CssBuilder<T & {
1218
1591
  color: import("csstype").Property.Color | undefined;
1219
1592
  }>;
1593
+ /** Sets `color: "rgba(250,255,250,1)"`. */
1220
1594
  get green50(): CssBuilder<T & {
1221
1595
  color: import("csstype").Property.Color | undefined;
1222
1596
  }>;
1597
+ /** Sets `color: "rgba(223,248,216,1)"`. */
1223
1598
  get green100(): CssBuilder<T & {
1224
1599
  color: import("csstype").Property.Color | undefined;
1225
1600
  }>;
1601
+ /** Sets `color: "rgba(199,239,183,1)"`. */
1226
1602
  get green200(): CssBuilder<T & {
1227
1603
  color: import("csstype").Property.Color | undefined;
1228
1604
  }>;
1605
+ /** Sets `color: "rgba(179,226,153,1)"`. */
1229
1606
  get green300(): CssBuilder<T & {
1230
1607
  color: import("csstype").Property.Color | undefined;
1231
1608
  }>;
1609
+ /** Sets `color: "rgba(163,208,126,1)"`. */
1232
1610
  get green400(): CssBuilder<T & {
1233
1611
  color: import("csstype").Property.Color | undefined;
1234
1612
  }>;
1613
+ /** Sets `color: "rgba(146,185,101,1)"`. */
1235
1614
  get green500(): CssBuilder<T & {
1236
1615
  color: import("csstype").Property.Color | undefined;
1237
1616
  }>;
1617
+ /** Sets `color: "rgba(126,156,79,1)"`. */
1238
1618
  get green600(): CssBuilder<T & {
1239
1619
  color: import("csstype").Property.Color | undefined;
1240
1620
  }>;
1621
+ /** Sets `color: "rgba(101,120,57,1)"`. */
1241
1622
  get green700(): CssBuilder<T & {
1242
1623
  color: import("csstype").Property.Color | undefined;
1243
1624
  }>;
1625
+ /** Sets `color: "rgba(64,93,44,1)"`. */
1244
1626
  get green800(): CssBuilder<T & {
1245
1627
  color: import("csstype").Property.Color | undefined;
1246
1628
  }>;
1629
+ /** Sets `color: "rgba(34,64,31,1)"`. */
1247
1630
  get green900(): CssBuilder<T & {
1248
1631
  color: import("csstype").Property.Color | undefined;
1249
1632
  }>;
1633
+ /** Sets `color: "rgba(245,243,255,1)"`. */
1250
1634
  get violet50(): CssBuilder<T & {
1251
1635
  color: import("csstype").Property.Color | undefined;
1252
1636
  }>;
1637
+ /** Sets `color: "rgba(238,234,253,1)"`. */
1253
1638
  get violet100(): CssBuilder<T & {
1254
1639
  color: import("csstype").Property.Color | undefined;
1255
1640
  }>;
1641
+ /** Sets `color: "rgba(232,225,252,1)"`. */
1256
1642
  get violet200(): CssBuilder<T & {
1257
1643
  color: import("csstype").Property.Color | undefined;
1258
1644
  }>;
1645
+ /** Sets `color: "rgba(218,205,246,1)"`. */
1259
1646
  get violet300(): CssBuilder<T & {
1260
1647
  color: import("csstype").Property.Color | undefined;
1261
1648
  }>;
1649
+ /** Sets `color: "rgba(204,186,236,1)"`. */
1262
1650
  get violet400(): CssBuilder<T & {
1263
1651
  color: import("csstype").Property.Color | undefined;
1264
1652
  }>;
1653
+ /** Sets `color: "rgba(190,167,223,1)"`. */
1265
1654
  get violet500(): CssBuilder<T & {
1266
1655
  color: import("csstype").Property.Color | undefined;
1267
1656
  }>;
1657
+ /** Sets `color: "rgba(173,147,205,1)"`. */
1268
1658
  get violet600(): CssBuilder<T & {
1269
1659
  color: import("csstype").Property.Color | undefined;
1270
1660
  }>;
1661
+ /** Sets `color: "rgba(153,126,181,1)"`. */
1271
1662
  get violet700(): CssBuilder<T & {
1272
1663
  color: import("csstype").Property.Color | undefined;
1273
1664
  }>;
1665
+ /** Sets `color: "rgba(128,103,151,1)"`. */
1274
1666
  get violet800(): CssBuilder<T & {
1275
1667
  color: import("csstype").Property.Color | undefined;
1276
1668
  }>;
1669
+ /** Sets `color: "rgba(100,78,116,1)"`. */
1277
1670
  get violet900(): CssBuilder<T & {
1278
1671
  color: import("csstype").Property.Color | undefined;
1279
1672
  }>;
1673
+ /** Sets `color: value`. */
1280
1674
  color(value: Properties["color"]): CssBuilder<T & {
1281
1675
  color: import("csstype").Property.Color | undefined;
1282
1676
  }>;
1677
+ /** Sets `backgroundColor: "rgba(254,254,254,1)"`. */
1283
1678
  get bgWhite(): CssBuilder<T & {
1284
1679
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1285
1680
  }>;
1681
+ /** Sets `backgroundColor: "rgba(0,0,0,0)"`. */
1286
1682
  get bgTransparent(): CssBuilder<T & {
1287
1683
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1288
1684
  }>;
1685
+ /** Sets `backgroundColor: "rgba(255,253,253,1)"`. */
1289
1686
  get bgGray50(): CssBuilder<T & {
1290
1687
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1291
1688
  }>;
1689
+ /** Sets `backgroundColor: "rgba(247,245,245,1)"`. */
1292
1690
  get bgGray100(): CssBuilder<T & {
1293
1691
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1294
1692
  }>;
1693
+ /** Sets `backgroundColor: "rgba(236,235,235,1)"`. */
1295
1694
  get bgGray200(): CssBuilder<T & {
1296
1695
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1297
1696
  }>;
1697
+ /** Sets `backgroundColor: "rgba(221,220,220,1)"`. */
1298
1698
  get bgGray300(): CssBuilder<T & {
1299
1699
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1300
1700
  }>;
1701
+ /** Sets `backgroundColor: "rgba(201,201,201,1)"`. */
1301
1702
  get bgGray400(): CssBuilder<T & {
1302
1703
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1303
1704
  }>;
1705
+ /** Sets `backgroundColor: "rgba(175,175,175,1)"`. */
1304
1706
  get bgGray500(): CssBuilder<T & {
1305
1707
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1306
1708
  }>;
1709
+ /** Sets `backgroundColor: "rgba(141,141,141,1)"`. */
1307
1710
  get bgGray600(): CssBuilder<T & {
1308
1711
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1309
1712
  }>;
1713
+ /** Sets `backgroundColor: "rgba(100,100,100,1)"`. */
1310
1714
  get bgGray700(): CssBuilder<T & {
1311
1715
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1312
1716
  }>;
1717
+ /** Sets `backgroundColor: "rgba(53,53,53,1)"`. */
1313
1718
  get bgGray800(): CssBuilder<T & {
1314
1719
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1315
1720
  }>;
1721
+ /** Sets `backgroundColor: "rgba(36,36,36,1)"`. */
1316
1722
  get bgGray900(): CssBuilder<T & {
1317
1723
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1318
1724
  }>;
1725
+ /** Sets `backgroundColor: "rgba(240,249,255,1)"`. */
1319
1726
  get bgLightBlue50(): CssBuilder<T & {
1320
1727
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1321
1728
  }>;
1729
+ /** Sets `backgroundColor: "rgba(224,242,254,1)"`. */
1322
1730
  get bgLightBlue100(): CssBuilder<T & {
1323
1731
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1324
1732
  }>;
1733
+ /** Sets `backgroundColor: "rgba(186,230,253,1)"`. */
1325
1734
  get bgLightBlue200(): CssBuilder<T & {
1326
1735
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1327
1736
  }>;
1737
+ /** Sets `backgroundColor: "rgba(125,211,252,1)"`. */
1328
1738
  get bgLightBlue300(): CssBuilder<T & {
1329
1739
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1330
1740
  }>;
1741
+ /** Sets `backgroundColor: "rgba(56,189,248,1)"`. */
1331
1742
  get bgLightBlue400(): CssBuilder<T & {
1332
1743
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1333
1744
  }>;
1745
+ /** Sets `backgroundColor: "rgba(14,165,233,1)"`. */
1334
1746
  get bgLightBlue500(): CssBuilder<T & {
1335
1747
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1336
1748
  }>;
1749
+ /** Sets `backgroundColor: "rgba(2,143,199,1)"`. */
1337
1750
  get bgLightBlue600(): CssBuilder<T & {
1338
1751
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1339
1752
  }>;
1753
+ /** Sets `backgroundColor: "rgba(3,105,161,1)"`. */
1340
1754
  get bgLightBlue700(): CssBuilder<T & {
1341
1755
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1342
1756
  }>;
1757
+ /** Sets `backgroundColor: "rgba(7,89,133,1)"`. */
1343
1758
  get bgLightBlue800(): CssBuilder<T & {
1344
1759
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1345
1760
  }>;
1761
+ /** Sets `backgroundColor: "rgba(12,74,110,1)"`. */
1346
1762
  get bgLightBlue900(): CssBuilder<T & {
1347
1763
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1348
1764
  }>;
1765
+ /** Sets `backgroundColor: "rgba(255,242,242,1)"`. */
1349
1766
  get bgRed50(): CssBuilder<T & {
1350
1767
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1351
1768
  }>;
1769
+ /** Sets `backgroundColor: "rgba(253,210,209,1)"`. */
1352
1770
  get bgRed100(): CssBuilder<T & {
1353
1771
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1354
1772
  }>;
1773
+ /** Sets `backgroundColor: "rgba(249,181,177,1)"`. */
1355
1774
  get bgRed200(): CssBuilder<T & {
1356
1775
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1357
1776
  }>;
1777
+ /** Sets `backgroundColor: "rgba(242,155,148,1)"`. */
1358
1778
  get bgRed300(): CssBuilder<T & {
1359
1779
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1360
1780
  }>;
1781
+ /** Sets `backgroundColor: "rgba(232,133,122,1)"`. */
1361
1782
  get bgRed400(): CssBuilder<T & {
1362
1783
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1363
1784
  }>;
1785
+ /** Sets `backgroundColor: "rgba(218,114,100,1)"`. */
1364
1786
  get bgRed500(): CssBuilder<T & {
1365
1787
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1366
1788
  }>;
1789
+ /** Sets `backgroundColor: "rgba(200,98,81,1)"`. */
1367
1790
  get bgRed600(): CssBuilder<T & {
1368
1791
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1369
1792
  }>;
1793
+ /** Sets `backgroundColor: "rgba(176,83,73,1)"`. */
1370
1794
  get bgRed700(): CssBuilder<T & {
1371
1795
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1372
1796
  }>;
1797
+ /** Sets `backgroundColor: "rgba(149,68,64,1)"`. */
1373
1798
  get bgRed800(): CssBuilder<T & {
1374
1799
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1375
1800
  }>;
1801
+ /** Sets `backgroundColor: "rgba(120,54,54,1)"`. */
1376
1802
  get bgRed900(): CssBuilder<T & {
1377
1803
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1378
1804
  }>;
1805
+ /** Sets `backgroundColor: "rgba(255,254,242,1)"`. */
1379
1806
  get bgYellow50(): CssBuilder<T & {
1380
1807
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1381
1808
  }>;
1809
+ /** Sets `backgroundColor: "rgba(255,254,212,1)"`. */
1382
1810
  get bgYellow100(): CssBuilder<T & {
1383
1811
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1384
1812
  }>;
1813
+ /** Sets `backgroundColor: "rgba(255,250,180,1)"`. */
1385
1814
  get bgYellow200(): CssBuilder<T & {
1386
1815
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1387
1816
  }>;
1817
+ /** Sets `backgroundColor: "rgba(255,240,150,1)"`. */
1388
1818
  get bgYellow300(): CssBuilder<T & {
1389
1819
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1390
1820
  }>;
1821
+ /** Sets `backgroundColor: "rgba(255,225,123,1)"`. */
1391
1822
  get bgYellow400(): CssBuilder<T & {
1392
1823
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1393
1824
  }>;
1825
+ /** Sets `backgroundColor: "rgba(255,204,99,1)"`. */
1394
1826
  get bgYellow500(): CssBuilder<T & {
1395
1827
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1396
1828
  }>;
1829
+ /** Sets `backgroundColor: "rgba(246,177,78,1)"`. */
1397
1830
  get bgYellow600(): CssBuilder<T & {
1398
1831
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1399
1832
  }>;
1833
+ /** Sets `backgroundColor: "rgba(207,150,73,1)"`. */
1400
1834
  get bgYellow700(): CssBuilder<T & {
1401
1835
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1402
1836
  }>;
1837
+ /** Sets `backgroundColor: "rgba(164,120,66,1)"`. */
1403
1838
  get bgYellow800(): CssBuilder<T & {
1404
1839
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1405
1840
  }>;
1841
+ /** Sets `backgroundColor: "rgba(120,89,54,1)"`. */
1406
1842
  get bgYellow900(): CssBuilder<T & {
1407
1843
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1408
1844
  }>;
1845
+ /** Sets `backgroundColor: "rgba(250,255,250,1)"`. */
1409
1846
  get bgGreen50(): CssBuilder<T & {
1410
1847
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1411
1848
  }>;
1849
+ /** Sets `backgroundColor: "rgba(223,248,216,1)"`. */
1412
1850
  get bgGreen100(): CssBuilder<T & {
1413
1851
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1414
1852
  }>;
1853
+ /** Sets `backgroundColor: "rgba(199,239,183,1)"`. */
1415
1854
  get bgGreen200(): CssBuilder<T & {
1416
1855
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1417
1856
  }>;
1857
+ /** Sets `backgroundColor: "rgba(179,226,153,1)"`. */
1418
1858
  get bgGreen300(): CssBuilder<T & {
1419
1859
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1420
1860
  }>;
1861
+ /** Sets `backgroundColor: "rgba(163,208,126,1)"`. */
1421
1862
  get bgGreen400(): CssBuilder<T & {
1422
1863
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1423
1864
  }>;
1865
+ /** Sets `backgroundColor: "rgba(146,185,101,1)"`. */
1424
1866
  get bgGreen500(): CssBuilder<T & {
1425
1867
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1426
1868
  }>;
1869
+ /** Sets `backgroundColor: "rgba(126,156,79,1)"`. */
1427
1870
  get bgGreen600(): CssBuilder<T & {
1428
1871
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1429
1872
  }>;
1873
+ /** Sets `backgroundColor: "rgba(101,120,57,1)"`. */
1430
1874
  get bgGreen700(): CssBuilder<T & {
1431
1875
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1432
1876
  }>;
1877
+ /** Sets `backgroundColor: "rgba(64,93,44,1)"`. */
1433
1878
  get bgGreen800(): CssBuilder<T & {
1434
1879
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1435
1880
  }>;
1881
+ /** Sets `backgroundColor: "rgba(34,64,31,1)"`. */
1436
1882
  get bgGreen900(): CssBuilder<T & {
1437
1883
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1438
1884
  }>;
1885
+ /** Sets `backgroundColor: "rgba(245,243,255,1)"`. */
1439
1886
  get bgViolet50(): CssBuilder<T & {
1440
1887
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1441
1888
  }>;
1889
+ /** Sets `backgroundColor: "rgba(238,234,253,1)"`. */
1442
1890
  get bgViolet100(): CssBuilder<T & {
1443
1891
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1444
1892
  }>;
1893
+ /** Sets `backgroundColor: "rgba(232,225,252,1)"`. */
1445
1894
  get bgViolet200(): CssBuilder<T & {
1446
1895
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1447
1896
  }>;
1897
+ /** Sets `backgroundColor: "rgba(218,205,246,1)"`. */
1448
1898
  get bgViolet300(): CssBuilder<T & {
1449
1899
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1450
1900
  }>;
1901
+ /** Sets `backgroundColor: "rgba(204,186,236,1)"`. */
1451
1902
  get bgViolet400(): CssBuilder<T & {
1452
1903
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1453
1904
  }>;
1905
+ /** Sets `backgroundColor: "rgba(190,167,223,1)"`. */
1454
1906
  get bgViolet500(): CssBuilder<T & {
1455
1907
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1456
1908
  }>;
1909
+ /** Sets `backgroundColor: "rgba(173,147,205,1)"`. */
1457
1910
  get bgViolet600(): CssBuilder<T & {
1458
1911
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1459
1912
  }>;
1913
+ /** Sets `backgroundColor: "rgba(153,126,181,1)"`. */
1460
1914
  get bgViolet700(): CssBuilder<T & {
1461
1915
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1462
1916
  }>;
1917
+ /** Sets `backgroundColor: "rgba(128,103,151,1)"`. */
1463
1918
  get bgViolet800(): CssBuilder<T & {
1464
1919
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1465
1920
  }>;
1921
+ /** Sets `backgroundColor: "rgba(100,78,116,1)"`. */
1466
1922
  get bgViolet900(): CssBuilder<T & {
1467
1923
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1468
1924
  }>;
1925
+ /** Sets `backgroundColor: value`. */
1469
1926
  bgColor(value: Properties["backgroundColor"]): CssBuilder<T & {
1470
1927
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1471
1928
  }>;
1929
+ /** Sets `fill: "rgba(254,254,254,1)"`. */
1472
1930
  get fWhite(): CssBuilder<T & {
1473
1931
  fill: import("csstype").Property.Fill | undefined;
1474
1932
  }>;
1933
+ /** Sets `fill: "rgba(0,0,0,0)"`. */
1475
1934
  get fTransparent(): CssBuilder<T & {
1476
1935
  fill: import("csstype").Property.Fill | undefined;
1477
1936
  }>;
1937
+ /** Sets `fill: "rgba(255,253,253,1)"`. */
1478
1938
  get fGray50(): CssBuilder<T & {
1479
1939
  fill: import("csstype").Property.Fill | undefined;
1480
1940
  }>;
1941
+ /** Sets `fill: "rgba(247,245,245,1)"`. */
1481
1942
  get fGray100(): CssBuilder<T & {
1482
1943
  fill: import("csstype").Property.Fill | undefined;
1483
1944
  }>;
1945
+ /** Sets `fill: "rgba(236,235,235,1)"`. */
1484
1946
  get fGray200(): CssBuilder<T & {
1485
1947
  fill: import("csstype").Property.Fill | undefined;
1486
1948
  }>;
1949
+ /** Sets `fill: "rgba(221,220,220,1)"`. */
1487
1950
  get fGray300(): CssBuilder<T & {
1488
1951
  fill: import("csstype").Property.Fill | undefined;
1489
1952
  }>;
1953
+ /** Sets `fill: "rgba(201,201,201,1)"`. */
1490
1954
  get fGray400(): CssBuilder<T & {
1491
1955
  fill: import("csstype").Property.Fill | undefined;
1492
1956
  }>;
1957
+ /** Sets `fill: "rgba(175,175,175,1)"`. */
1493
1958
  get fGray500(): CssBuilder<T & {
1494
1959
  fill: import("csstype").Property.Fill | undefined;
1495
1960
  }>;
1961
+ /** Sets `fill: "rgba(141,141,141,1)"`. */
1496
1962
  get fGray600(): CssBuilder<T & {
1497
1963
  fill: import("csstype").Property.Fill | undefined;
1498
1964
  }>;
1965
+ /** Sets `fill: "rgba(100,100,100,1)"`. */
1499
1966
  get fGray700(): CssBuilder<T & {
1500
1967
  fill: import("csstype").Property.Fill | undefined;
1501
1968
  }>;
1969
+ /** Sets `fill: "rgba(53,53,53,1)"`. */
1502
1970
  get fGray800(): CssBuilder<T & {
1503
1971
  fill: import("csstype").Property.Fill | undefined;
1504
1972
  }>;
1973
+ /** Sets `fill: "rgba(36,36,36,1)"`. */
1505
1974
  get fGray900(): CssBuilder<T & {
1506
1975
  fill: import("csstype").Property.Fill | undefined;
1507
1976
  }>;
1977
+ /** Sets `fill: "rgba(240,249,255,1)"`. */
1508
1978
  get fLightBlue50(): CssBuilder<T & {
1509
1979
  fill: import("csstype").Property.Fill | undefined;
1510
1980
  }>;
1981
+ /** Sets `fill: "rgba(224,242,254,1)"`. */
1511
1982
  get fLightBlue100(): CssBuilder<T & {
1512
1983
  fill: import("csstype").Property.Fill | undefined;
1513
1984
  }>;
1985
+ /** Sets `fill: "rgba(186,230,253,1)"`. */
1514
1986
  get fLightBlue200(): CssBuilder<T & {
1515
1987
  fill: import("csstype").Property.Fill | undefined;
1516
1988
  }>;
1989
+ /** Sets `fill: "rgba(125,211,252,1)"`. */
1517
1990
  get fLightBlue300(): CssBuilder<T & {
1518
1991
  fill: import("csstype").Property.Fill | undefined;
1519
1992
  }>;
1993
+ /** Sets `fill: "rgba(56,189,248,1)"`. */
1520
1994
  get fLightBlue400(): CssBuilder<T & {
1521
1995
  fill: import("csstype").Property.Fill | undefined;
1522
1996
  }>;
1997
+ /** Sets `fill: "rgba(14,165,233,1)"`. */
1523
1998
  get fLightBlue500(): CssBuilder<T & {
1524
1999
  fill: import("csstype").Property.Fill | undefined;
1525
2000
  }>;
2001
+ /** Sets `fill: "rgba(2,143,199,1)"`. */
1526
2002
  get fLightBlue600(): CssBuilder<T & {
1527
2003
  fill: import("csstype").Property.Fill | undefined;
1528
2004
  }>;
2005
+ /** Sets `fill: "rgba(3,105,161,1)"`. */
1529
2006
  get fLightBlue700(): CssBuilder<T & {
1530
2007
  fill: import("csstype").Property.Fill | undefined;
1531
2008
  }>;
2009
+ /** Sets `fill: "rgba(7,89,133,1)"`. */
1532
2010
  get fLightBlue800(): CssBuilder<T & {
1533
2011
  fill: import("csstype").Property.Fill | undefined;
1534
2012
  }>;
2013
+ /** Sets `fill: "rgba(12,74,110,1)"`. */
1535
2014
  get fLightBlue900(): CssBuilder<T & {
1536
2015
  fill: import("csstype").Property.Fill | undefined;
1537
2016
  }>;
2017
+ /** Sets `fill: "rgba(255,242,242,1)"`. */
1538
2018
  get fRed50(): CssBuilder<T & {
1539
2019
  fill: import("csstype").Property.Fill | undefined;
1540
2020
  }>;
2021
+ /** Sets `fill: "rgba(253,210,209,1)"`. */
1541
2022
  get fRed100(): CssBuilder<T & {
1542
2023
  fill: import("csstype").Property.Fill | undefined;
1543
2024
  }>;
2025
+ /** Sets `fill: "rgba(249,181,177,1)"`. */
1544
2026
  get fRed200(): CssBuilder<T & {
1545
2027
  fill: import("csstype").Property.Fill | undefined;
1546
2028
  }>;
2029
+ /** Sets `fill: "rgba(242,155,148,1)"`. */
1547
2030
  get fRed300(): CssBuilder<T & {
1548
2031
  fill: import("csstype").Property.Fill | undefined;
1549
2032
  }>;
2033
+ /** Sets `fill: "rgba(232,133,122,1)"`. */
1550
2034
  get fRed400(): CssBuilder<T & {
1551
2035
  fill: import("csstype").Property.Fill | undefined;
1552
2036
  }>;
2037
+ /** Sets `fill: "rgba(218,114,100,1)"`. */
1553
2038
  get fRed500(): CssBuilder<T & {
1554
2039
  fill: import("csstype").Property.Fill | undefined;
1555
2040
  }>;
2041
+ /** Sets `fill: "rgba(200,98,81,1)"`. */
1556
2042
  get fRed600(): CssBuilder<T & {
1557
2043
  fill: import("csstype").Property.Fill | undefined;
1558
2044
  }>;
2045
+ /** Sets `fill: "rgba(176,83,73,1)"`. */
1559
2046
  get fRed700(): CssBuilder<T & {
1560
2047
  fill: import("csstype").Property.Fill | undefined;
1561
2048
  }>;
2049
+ /** Sets `fill: "rgba(149,68,64,1)"`. */
1562
2050
  get fRed800(): CssBuilder<T & {
1563
2051
  fill: import("csstype").Property.Fill | undefined;
1564
2052
  }>;
2053
+ /** Sets `fill: "rgba(120,54,54,1)"`. */
1565
2054
  get fRed900(): CssBuilder<T & {
1566
2055
  fill: import("csstype").Property.Fill | undefined;
1567
2056
  }>;
2057
+ /** Sets `fill: "rgba(255,254,242,1)"`. */
1568
2058
  get fYellow50(): CssBuilder<T & {
1569
2059
  fill: import("csstype").Property.Fill | undefined;
1570
2060
  }>;
2061
+ /** Sets `fill: "rgba(255,254,212,1)"`. */
1571
2062
  get fYellow100(): CssBuilder<T & {
1572
2063
  fill: import("csstype").Property.Fill | undefined;
1573
2064
  }>;
2065
+ /** Sets `fill: "rgba(255,250,180,1)"`. */
1574
2066
  get fYellow200(): CssBuilder<T & {
1575
2067
  fill: import("csstype").Property.Fill | undefined;
1576
2068
  }>;
2069
+ /** Sets `fill: "rgba(255,240,150,1)"`. */
1577
2070
  get fYellow300(): CssBuilder<T & {
1578
2071
  fill: import("csstype").Property.Fill | undefined;
1579
2072
  }>;
2073
+ /** Sets `fill: "rgba(255,225,123,1)"`. */
1580
2074
  get fYellow400(): CssBuilder<T & {
1581
2075
  fill: import("csstype").Property.Fill | undefined;
1582
2076
  }>;
2077
+ /** Sets `fill: "rgba(255,204,99,1)"`. */
1583
2078
  get fYellow500(): CssBuilder<T & {
1584
2079
  fill: import("csstype").Property.Fill | undefined;
1585
2080
  }>;
2081
+ /** Sets `fill: "rgba(246,177,78,1)"`. */
1586
2082
  get fYellow600(): CssBuilder<T & {
1587
2083
  fill: import("csstype").Property.Fill | undefined;
1588
2084
  }>;
2085
+ /** Sets `fill: "rgba(207,150,73,1)"`. */
1589
2086
  get fYellow700(): CssBuilder<T & {
1590
2087
  fill: import("csstype").Property.Fill | undefined;
1591
2088
  }>;
2089
+ /** Sets `fill: "rgba(164,120,66,1)"`. */
1592
2090
  get fYellow800(): CssBuilder<T & {
1593
2091
  fill: import("csstype").Property.Fill | undefined;
1594
2092
  }>;
2093
+ /** Sets `fill: "rgba(120,89,54,1)"`. */
1595
2094
  get fYellow900(): CssBuilder<T & {
1596
2095
  fill: import("csstype").Property.Fill | undefined;
1597
2096
  }>;
2097
+ /** Sets `fill: "rgba(250,255,250,1)"`. */
1598
2098
  get fGreen50(): CssBuilder<T & {
1599
2099
  fill: import("csstype").Property.Fill | undefined;
1600
2100
  }>;
2101
+ /** Sets `fill: "rgba(223,248,216,1)"`. */
1601
2102
  get fGreen100(): CssBuilder<T & {
1602
2103
  fill: import("csstype").Property.Fill | undefined;
1603
2104
  }>;
2105
+ /** Sets `fill: "rgba(199,239,183,1)"`. */
1604
2106
  get fGreen200(): CssBuilder<T & {
1605
2107
  fill: import("csstype").Property.Fill | undefined;
1606
2108
  }>;
2109
+ /** Sets `fill: "rgba(179,226,153,1)"`. */
1607
2110
  get fGreen300(): CssBuilder<T & {
1608
2111
  fill: import("csstype").Property.Fill | undefined;
1609
2112
  }>;
2113
+ /** Sets `fill: "rgba(163,208,126,1)"`. */
1610
2114
  get fGreen400(): CssBuilder<T & {
1611
2115
  fill: import("csstype").Property.Fill | undefined;
1612
2116
  }>;
2117
+ /** Sets `fill: "rgba(146,185,101,1)"`. */
1613
2118
  get fGreen500(): CssBuilder<T & {
1614
2119
  fill: import("csstype").Property.Fill | undefined;
1615
2120
  }>;
2121
+ /** Sets `fill: "rgba(126,156,79,1)"`. */
1616
2122
  get fGreen600(): CssBuilder<T & {
1617
2123
  fill: import("csstype").Property.Fill | undefined;
1618
2124
  }>;
2125
+ /** Sets `fill: "rgba(101,120,57,1)"`. */
1619
2126
  get fGreen700(): CssBuilder<T & {
1620
2127
  fill: import("csstype").Property.Fill | undefined;
1621
2128
  }>;
2129
+ /** Sets `fill: "rgba(64,93,44,1)"`. */
1622
2130
  get fGreen800(): CssBuilder<T & {
1623
2131
  fill: import("csstype").Property.Fill | undefined;
1624
2132
  }>;
2133
+ /** Sets `fill: "rgba(34,64,31,1)"`. */
1625
2134
  get fGreen900(): CssBuilder<T & {
1626
2135
  fill: import("csstype").Property.Fill | undefined;
1627
2136
  }>;
2137
+ /** Sets `fill: "rgba(245,243,255,1)"`. */
1628
2138
  get fViolet50(): CssBuilder<T & {
1629
2139
  fill: import("csstype").Property.Fill | undefined;
1630
2140
  }>;
2141
+ /** Sets `fill: "rgba(238,234,253,1)"`. */
1631
2142
  get fViolet100(): CssBuilder<T & {
1632
2143
  fill: import("csstype").Property.Fill | undefined;
1633
2144
  }>;
2145
+ /** Sets `fill: "rgba(232,225,252,1)"`. */
1634
2146
  get fViolet200(): CssBuilder<T & {
1635
2147
  fill: import("csstype").Property.Fill | undefined;
1636
2148
  }>;
2149
+ /** Sets `fill: "rgba(218,205,246,1)"`. */
1637
2150
  get fViolet300(): CssBuilder<T & {
1638
2151
  fill: import("csstype").Property.Fill | undefined;
1639
2152
  }>;
2153
+ /** Sets `fill: "rgba(204,186,236,1)"`. */
1640
2154
  get fViolet400(): CssBuilder<T & {
1641
2155
  fill: import("csstype").Property.Fill | undefined;
1642
2156
  }>;
2157
+ /** Sets `fill: "rgba(190,167,223,1)"`. */
1643
2158
  get fViolet500(): CssBuilder<T & {
1644
2159
  fill: import("csstype").Property.Fill | undefined;
1645
2160
  }>;
2161
+ /** Sets `fill: "rgba(173,147,205,1)"`. */
1646
2162
  get fViolet600(): CssBuilder<T & {
1647
2163
  fill: import("csstype").Property.Fill | undefined;
1648
2164
  }>;
2165
+ /** Sets `fill: "rgba(153,126,181,1)"`. */
1649
2166
  get fViolet700(): CssBuilder<T & {
1650
2167
  fill: import("csstype").Property.Fill | undefined;
1651
2168
  }>;
2169
+ /** Sets `fill: "rgba(128,103,151,1)"`. */
1652
2170
  get fViolet800(): CssBuilder<T & {
1653
2171
  fill: import("csstype").Property.Fill | undefined;
1654
2172
  }>;
2173
+ /** Sets `fill: "rgba(100,78,116,1)"`. */
1655
2174
  get fViolet900(): CssBuilder<T & {
1656
2175
  fill: import("csstype").Property.Fill | undefined;
1657
2176
  }>;
2177
+ /** Sets `fill: value`. */
1658
2178
  fill(value: Properties["fill"]): CssBuilder<T & {
1659
2179
  fill: import("csstype").Property.Fill | undefined;
1660
2180
  }>;
2181
+ /** Sets `marginTop: "0px"`. */
1661
2182
  get mt0(): CssBuilder<T & {
1662
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2183
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1663
2184
  }>;
2185
+ /** Sets `marginTop: "8px"`. */
1664
2186
  get mt1(): CssBuilder<T & {
1665
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2187
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1666
2188
  }>;
2189
+ /** Sets `marginTop: "16px"`. */
1667
2190
  get mt2(): CssBuilder<T & {
1668
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2191
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1669
2192
  }>;
2193
+ /** Sets `marginTop: "24px"`. */
1670
2194
  get mt3(): CssBuilder<T & {
1671
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2195
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1672
2196
  }>;
2197
+ /** Sets `marginTop: "32px"`. */
1673
2198
  get mt4(): CssBuilder<T & {
1674
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2199
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1675
2200
  }>;
2201
+ /** Sets `marginTop: "40px"`. */
1676
2202
  get mt5(): CssBuilder<T & {
1677
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2203
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1678
2204
  }>;
2205
+ /** Sets `marginTop: "48px"`. */
1679
2206
  get mt6(): CssBuilder<T & {
1680
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2207
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1681
2208
  }>;
2209
+ /** Sets `marginTop: "56px"`. */
1682
2210
  get mt7(): CssBuilder<T & {
1683
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2211
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1684
2212
  }>;
2213
+ /** Sets `marginTop: "64px"`. */
1685
2214
  get mt8(): CssBuilder<T & {
1686
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2215
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1687
2216
  }>;
2217
+ /** Sets `marginTop: inc`. */
1688
2218
  mt(inc: number | string): CssBuilder<T & {
1689
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2219
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1690
2220
  }>;
2221
+ /** Sets `marginTop: px`. */
1691
2222
  mtPx(px: number): CssBuilder<T & {
1692
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2223
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1693
2224
  }>;
2225
+ /** Sets `marginRight: "0px"`. */
1694
2226
  get mr0(): CssBuilder<T & {
1695
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2227
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1696
2228
  }>;
2229
+ /** Sets `marginRight: "8px"`. */
1697
2230
  get mr1(): CssBuilder<T & {
1698
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2231
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1699
2232
  }>;
2233
+ /** Sets `marginRight: "16px"`. */
1700
2234
  get mr2(): CssBuilder<T & {
1701
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2235
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1702
2236
  }>;
2237
+ /** Sets `marginRight: "24px"`. */
1703
2238
  get mr3(): CssBuilder<T & {
1704
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2239
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1705
2240
  }>;
2241
+ /** Sets `marginRight: "32px"`. */
1706
2242
  get mr4(): CssBuilder<T & {
1707
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2243
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1708
2244
  }>;
2245
+ /** Sets `marginRight: "40px"`. */
1709
2246
  get mr5(): CssBuilder<T & {
1710
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2247
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1711
2248
  }>;
2249
+ /** Sets `marginRight: "48px"`. */
1712
2250
  get mr6(): CssBuilder<T & {
1713
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2251
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1714
2252
  }>;
2253
+ /** Sets `marginRight: "56px"`. */
1715
2254
  get mr7(): CssBuilder<T & {
1716
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2255
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1717
2256
  }>;
2257
+ /** Sets `marginRight: "64px"`. */
1718
2258
  get mr8(): CssBuilder<T & {
1719
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2259
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1720
2260
  }>;
2261
+ /** Sets `marginRight: inc`. */
1721
2262
  mr(inc: number | string): CssBuilder<T & {
1722
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2263
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1723
2264
  }>;
2265
+ /** Sets `marginRight: px`. */
1724
2266
  mrPx(px: number): CssBuilder<T & {
1725
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2267
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1726
2268
  }>;
2269
+ /** Sets `marginBottom: "0px"`. */
1727
2270
  get mb0(): CssBuilder<T & {
1728
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2271
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1729
2272
  }>;
2273
+ /** Sets `marginBottom: "8px"`. */
1730
2274
  get mb1(): CssBuilder<T & {
1731
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2275
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1732
2276
  }>;
2277
+ /** Sets `marginBottom: "16px"`. */
1733
2278
  get mb2(): CssBuilder<T & {
1734
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2279
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1735
2280
  }>;
2281
+ /** Sets `marginBottom: "24px"`. */
1736
2282
  get mb3(): CssBuilder<T & {
1737
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2283
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1738
2284
  }>;
2285
+ /** Sets `marginBottom: "32px"`. */
1739
2286
  get mb4(): CssBuilder<T & {
1740
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2287
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1741
2288
  }>;
2289
+ /** Sets `marginBottom: "40px"`. */
1742
2290
  get mb5(): CssBuilder<T & {
1743
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2291
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1744
2292
  }>;
2293
+ /** Sets `marginBottom: "48px"`. */
1745
2294
  get mb6(): CssBuilder<T & {
1746
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2295
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1747
2296
  }>;
2297
+ /** Sets `marginBottom: "56px"`. */
1748
2298
  get mb7(): CssBuilder<T & {
1749
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2299
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1750
2300
  }>;
2301
+ /** Sets `marginBottom: "64px"`. */
1751
2302
  get mb8(): CssBuilder<T & {
1752
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2303
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1753
2304
  }>;
2305
+ /** Sets `marginBottom: inc`. */
1754
2306
  mb(inc: number | string): CssBuilder<T & {
1755
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2307
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1756
2308
  }>;
2309
+ /** Sets `marginBottom: px`. */
1757
2310
  mbPx(px: number): CssBuilder<T & {
1758
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2311
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1759
2312
  }>;
2313
+ /** Sets `marginLeft: "0px"`. */
1760
2314
  get ml0(): CssBuilder<T & {
1761
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2315
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1762
2316
  }>;
2317
+ /** Sets `marginLeft: "8px"`. */
1763
2318
  get ml1(): CssBuilder<T & {
1764
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2319
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1765
2320
  }>;
2321
+ /** Sets `marginLeft: "16px"`. */
1766
2322
  get ml2(): CssBuilder<T & {
1767
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2323
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1768
2324
  }>;
2325
+ /** Sets `marginLeft: "24px"`. */
1769
2326
  get ml3(): CssBuilder<T & {
1770
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2327
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1771
2328
  }>;
2329
+ /** Sets `marginLeft: "32px"`. */
1772
2330
  get ml4(): CssBuilder<T & {
1773
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2331
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1774
2332
  }>;
2333
+ /** Sets `marginLeft: "40px"`. */
1775
2334
  get ml5(): CssBuilder<T & {
1776
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2335
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1777
2336
  }>;
2337
+ /** Sets `marginLeft: "48px"`. */
1778
2338
  get ml6(): CssBuilder<T & {
1779
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2339
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1780
2340
  }>;
2341
+ /** Sets `marginLeft: "56px"`. */
1781
2342
  get ml7(): CssBuilder<T & {
1782
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2343
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1783
2344
  }>;
2345
+ /** Sets `marginLeft: "64px"`. */
1784
2346
  get ml8(): CssBuilder<T & {
1785
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2347
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1786
2348
  }>;
2349
+ /** Sets `marginLeft: inc`. */
1787
2350
  ml(inc: number | string): CssBuilder<T & {
1788
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2351
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1789
2352
  }>;
2353
+ /** Sets `marginLeft: px`. */
1790
2354
  mlPx(px: number): CssBuilder<T & {
1791
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2355
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1792
2356
  }>;
2357
+ /** Sets `ml: "0px"; mr: "0px"`. */
1793
2358
  get mx0(): CssBuilder<T & {
1794
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2359
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1795
2360
  } & {
1796
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2361
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1797
2362
  }>;
2363
+ /** Sets `ml: "8px"; mr: "8px"`. */
1798
2364
  get mx1(): CssBuilder<T & {
1799
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2365
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1800
2366
  } & {
1801
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2367
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1802
2368
  }>;
2369
+ /** Sets `ml: "16px"; mr: "16px"`. */
1803
2370
  get mx2(): CssBuilder<T & {
1804
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2371
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1805
2372
  } & {
1806
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2373
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1807
2374
  }>;
2375
+ /** Sets `ml: "24px"; mr: "24px"`. */
1808
2376
  get mx3(): CssBuilder<T & {
1809
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2377
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1810
2378
  } & {
1811
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2379
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1812
2380
  }>;
2381
+ /** Sets `ml: "32px"; mr: "32px"`. */
1813
2382
  get mx4(): CssBuilder<T & {
1814
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2383
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1815
2384
  } & {
1816
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2385
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1817
2386
  }>;
2387
+ /** Sets `ml: "40px"; mr: "40px"`. */
1818
2388
  get mx5(): CssBuilder<T & {
1819
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2389
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1820
2390
  } & {
1821
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2391
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1822
2392
  }>;
2393
+ /** Sets `ml: "48px"; mr: "48px"`. */
1823
2394
  get mx6(): CssBuilder<T & {
1824
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2395
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1825
2396
  } & {
1826
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2397
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1827
2398
  }>;
2399
+ /** Sets `ml: "56px"; mr: "56px"`. */
1828
2400
  get mx7(): CssBuilder<T & {
1829
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2401
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1830
2402
  } & {
1831
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2403
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1832
2404
  }>;
2405
+ /** Sets `ml: "64px"; mr: "64px"`. */
1833
2406
  get mx8(): CssBuilder<T & {
1834
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2407
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1835
2408
  } & {
1836
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2409
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1837
2410
  }>;
1838
2411
  mx(inc: number | string): CssBuilder<T & {
1839
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2412
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1840
2413
  } & {
1841
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2414
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1842
2415
  }>;
1843
2416
  mxPx(px: number): CssBuilder<T & {
1844
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2417
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1845
2418
  } & {
1846
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2419
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1847
2420
  }>;
2421
+ /** Sets `mt: "0px"; mb: "0px"`. */
1848
2422
  get my0(): CssBuilder<T & {
1849
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2423
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1850
2424
  } & {
1851
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2425
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1852
2426
  }>;
2427
+ /** Sets `mt: "8px"; mb: "8px"`. */
1853
2428
  get my1(): CssBuilder<T & {
1854
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2429
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1855
2430
  } & {
1856
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2431
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1857
2432
  }>;
2433
+ /** Sets `mt: "16px"; mb: "16px"`. */
1858
2434
  get my2(): CssBuilder<T & {
1859
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2435
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1860
2436
  } & {
1861
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2437
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1862
2438
  }>;
2439
+ /** Sets `mt: "24px"; mb: "24px"`. */
1863
2440
  get my3(): CssBuilder<T & {
1864
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2441
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1865
2442
  } & {
1866
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2443
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1867
2444
  }>;
2445
+ /** Sets `mt: "32px"; mb: "32px"`. */
1868
2446
  get my4(): CssBuilder<T & {
1869
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2447
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1870
2448
  } & {
1871
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2449
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1872
2450
  }>;
2451
+ /** Sets `mt: "40px"; mb: "40px"`. */
1873
2452
  get my5(): CssBuilder<T & {
1874
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2453
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1875
2454
  } & {
1876
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2455
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1877
2456
  }>;
2457
+ /** Sets `mt: "48px"; mb: "48px"`. */
1878
2458
  get my6(): CssBuilder<T & {
1879
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2459
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1880
2460
  } & {
1881
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2461
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1882
2462
  }>;
2463
+ /** Sets `mt: "56px"; mb: "56px"`. */
1883
2464
  get my7(): CssBuilder<T & {
1884
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2465
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1885
2466
  } & {
1886
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2467
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1887
2468
  }>;
2469
+ /** Sets `mt: "64px"; mb: "64px"`. */
1888
2470
  get my8(): CssBuilder<T & {
1889
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2471
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1890
2472
  } & {
1891
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2473
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1892
2474
  }>;
1893
2475
  my(inc: number | string): CssBuilder<T & {
1894
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2476
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1895
2477
  } & {
1896
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2478
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1897
2479
  }>;
1898
2480
  myPx(px: number): CssBuilder<T & {
1899
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2481
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1900
2482
  } & {
1901
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2483
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1902
2484
  }>;
2485
+ /** Sets `mt: "0px"; mb: "0px"; mr: "0px"; ml: "0px"`. */
1903
2486
  get m0(): CssBuilder<T & {
1904
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2487
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1905
2488
  } & {
1906
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2489
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1907
2490
  } & {
1908
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2491
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1909
2492
  } & {
1910
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2493
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1911
2494
  }>;
2495
+ /** Sets `mt: "8px"; mb: "8px"; mr: "8px"; ml: "8px"`. */
1912
2496
  get m1(): CssBuilder<T & {
1913
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2497
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1914
2498
  } & {
1915
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2499
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1916
2500
  } & {
1917
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2501
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1918
2502
  } & {
1919
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2503
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1920
2504
  }>;
2505
+ /** Sets `mt: "16px"; mb: "16px"; mr: "16px"; ml: "16px"`. */
1921
2506
  get m2(): CssBuilder<T & {
1922
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2507
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1923
2508
  } & {
1924
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2509
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1925
2510
  } & {
1926
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2511
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1927
2512
  } & {
1928
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2513
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1929
2514
  }>;
2515
+ /** Sets `mt: "24px"; mb: "24px"; mr: "24px"; ml: "24px"`. */
1930
2516
  get m3(): CssBuilder<T & {
1931
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2517
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1932
2518
  } & {
1933
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2519
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1934
2520
  } & {
1935
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2521
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1936
2522
  } & {
1937
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2523
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1938
2524
  }>;
2525
+ /** Sets `mt: "32px"; mb: "32px"; mr: "32px"; ml: "32px"`. */
1939
2526
  get m4(): CssBuilder<T & {
1940
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2527
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1941
2528
  } & {
1942
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2529
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1943
2530
  } & {
1944
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2531
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1945
2532
  } & {
1946
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2533
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1947
2534
  }>;
2535
+ /** Sets `mt: "40px"; mb: "40px"; mr: "40px"; ml: "40px"`. */
1948
2536
  get m5(): CssBuilder<T & {
1949
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2537
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1950
2538
  } & {
1951
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2539
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1952
2540
  } & {
1953
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2541
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1954
2542
  } & {
1955
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2543
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1956
2544
  }>;
2545
+ /** Sets `mt: "48px"; mb: "48px"; mr: "48px"; ml: "48px"`. */
1957
2546
  get m6(): CssBuilder<T & {
1958
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2547
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1959
2548
  } & {
1960
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2549
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1961
2550
  } & {
1962
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2551
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1963
2552
  } & {
1964
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2553
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1965
2554
  }>;
2555
+ /** Sets `mt: "56px"; mb: "56px"; mr: "56px"; ml: "56px"`. */
1966
2556
  get m7(): CssBuilder<T & {
1967
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2557
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1968
2558
  } & {
1969
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2559
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1970
2560
  } & {
1971
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2561
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1972
2562
  } & {
1973
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2563
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1974
2564
  }>;
2565
+ /** Sets `mt: "64px"; mb: "64px"; mr: "64px"; ml: "64px"`. */
1975
2566
  get m8(): CssBuilder<T & {
1976
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2567
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1977
2568
  } & {
1978
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2569
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1979
2570
  } & {
1980
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2571
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1981
2572
  } & {
1982
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2573
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1983
2574
  }>;
1984
2575
  m(inc: number | string): CssBuilder<T & {
1985
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2576
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1986
2577
  } & {
1987
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2578
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1988
2579
  } & {
1989
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2580
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1990
2581
  } & {
1991
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2582
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1992
2583
  }>;
1993
2584
  mPx(px: number): CssBuilder<T & {
1994
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2585
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1995
2586
  } & {
1996
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2587
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1997
2588
  } & {
1998
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2589
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1999
2590
  } & {
2000
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2591
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
2001
2592
  }>;
2593
+ /** Sets `paddingTop: "0px"`. */
2002
2594
  get pt0(): CssBuilder<T & {
2003
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2595
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2004
2596
  }>;
2597
+ /** Sets `paddingTop: "8px"`. */
2005
2598
  get pt1(): CssBuilder<T & {
2006
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2599
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2007
2600
  }>;
2601
+ /** Sets `paddingTop: "16px"`. */
2008
2602
  get pt2(): CssBuilder<T & {
2009
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2603
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2010
2604
  }>;
2605
+ /** Sets `paddingTop: "24px"`. */
2011
2606
  get pt3(): CssBuilder<T & {
2012
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2607
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2013
2608
  }>;
2609
+ /** Sets `paddingTop: "32px"`. */
2014
2610
  get pt4(): CssBuilder<T & {
2015
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2611
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2016
2612
  }>;
2613
+ /** Sets `paddingTop: "40px"`. */
2017
2614
  get pt5(): CssBuilder<T & {
2018
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2615
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2019
2616
  }>;
2617
+ /** Sets `paddingTop: "48px"`. */
2020
2618
  get pt6(): CssBuilder<T & {
2021
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2619
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2022
2620
  }>;
2621
+ /** Sets `paddingTop: "56px"`. */
2023
2622
  get pt7(): CssBuilder<T & {
2024
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2623
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2025
2624
  }>;
2625
+ /** Sets `paddingTop: "64px"`. */
2026
2626
  get pt8(): CssBuilder<T & {
2027
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2627
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2028
2628
  }>;
2629
+ /** Sets `paddingTop: inc`. */
2029
2630
  pt(inc: number | string): CssBuilder<T & {
2030
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2631
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2031
2632
  }>;
2633
+ /** Sets `paddingTop: px`. */
2032
2634
  ptPx(px: number): CssBuilder<T & {
2033
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2635
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2034
2636
  }>;
2637
+ /** Sets `paddingRight: "0px"`. */
2035
2638
  get pr0(): CssBuilder<T & {
2036
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2639
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2037
2640
  }>;
2641
+ /** Sets `paddingRight: "8px"`. */
2038
2642
  get pr1(): CssBuilder<T & {
2039
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2643
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2040
2644
  }>;
2645
+ /** Sets `paddingRight: "16px"`. */
2041
2646
  get pr2(): CssBuilder<T & {
2042
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2647
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2043
2648
  }>;
2649
+ /** Sets `paddingRight: "24px"`. */
2044
2650
  get pr3(): CssBuilder<T & {
2045
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2651
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2046
2652
  }>;
2653
+ /** Sets `paddingRight: "32px"`. */
2047
2654
  get pr4(): CssBuilder<T & {
2048
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2655
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2049
2656
  }>;
2657
+ /** Sets `paddingRight: "40px"`. */
2050
2658
  get pr5(): CssBuilder<T & {
2051
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2659
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2052
2660
  }>;
2661
+ /** Sets `paddingRight: "48px"`. */
2053
2662
  get pr6(): CssBuilder<T & {
2054
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2663
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2055
2664
  }>;
2665
+ /** Sets `paddingRight: "56px"`. */
2056
2666
  get pr7(): CssBuilder<T & {
2057
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2667
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2058
2668
  }>;
2669
+ /** Sets `paddingRight: "64px"`. */
2059
2670
  get pr8(): CssBuilder<T & {
2060
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2671
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2061
2672
  }>;
2673
+ /** Sets `paddingRight: inc`. */
2062
2674
  pr(inc: number | string): CssBuilder<T & {
2063
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2675
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2064
2676
  }>;
2677
+ /** Sets `paddingRight: px`. */
2065
2678
  prPx(px: number): CssBuilder<T & {
2066
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2679
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2067
2680
  }>;
2681
+ /** Sets `paddingBottom: "0px"`. */
2068
2682
  get pb0(): CssBuilder<T & {
2069
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2683
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2070
2684
  }>;
2685
+ /** Sets `paddingBottom: "8px"`. */
2071
2686
  get pb1(): CssBuilder<T & {
2072
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2687
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2073
2688
  }>;
2689
+ /** Sets `paddingBottom: "16px"`. */
2074
2690
  get pb2(): CssBuilder<T & {
2075
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2691
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2076
2692
  }>;
2693
+ /** Sets `paddingBottom: "24px"`. */
2077
2694
  get pb3(): CssBuilder<T & {
2078
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2695
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2079
2696
  }>;
2697
+ /** Sets `paddingBottom: "32px"`. */
2080
2698
  get pb4(): CssBuilder<T & {
2081
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2699
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2082
2700
  }>;
2701
+ /** Sets `paddingBottom: "40px"`. */
2083
2702
  get pb5(): CssBuilder<T & {
2084
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2703
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2085
2704
  }>;
2705
+ /** Sets `paddingBottom: "48px"`. */
2086
2706
  get pb6(): CssBuilder<T & {
2087
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2707
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2088
2708
  }>;
2709
+ /** Sets `paddingBottom: "56px"`. */
2089
2710
  get pb7(): CssBuilder<T & {
2090
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2711
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2091
2712
  }>;
2713
+ /** Sets `paddingBottom: "64px"`. */
2092
2714
  get pb8(): CssBuilder<T & {
2093
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2715
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2094
2716
  }>;
2717
+ /** Sets `paddingBottom: inc`. */
2095
2718
  pb(inc: number | string): CssBuilder<T & {
2096
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2719
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2097
2720
  }>;
2721
+ /** Sets `paddingBottom: px`. */
2098
2722
  pbPx(px: number): CssBuilder<T & {
2099
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2723
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2100
2724
  }>;
2725
+ /** Sets `paddingLeft: "0px"`. */
2101
2726
  get pl0(): CssBuilder<T & {
2102
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2727
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2103
2728
  }>;
2729
+ /** Sets `paddingLeft: "8px"`. */
2104
2730
  get pl1(): CssBuilder<T & {
2105
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2731
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2106
2732
  }>;
2733
+ /** Sets `paddingLeft: "16px"`. */
2107
2734
  get pl2(): CssBuilder<T & {
2108
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2735
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2109
2736
  }>;
2737
+ /** Sets `paddingLeft: "24px"`. */
2110
2738
  get pl3(): CssBuilder<T & {
2111
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2739
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2112
2740
  }>;
2741
+ /** Sets `paddingLeft: "32px"`. */
2113
2742
  get pl4(): CssBuilder<T & {
2114
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2743
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2115
2744
  }>;
2745
+ /** Sets `paddingLeft: "40px"`. */
2116
2746
  get pl5(): CssBuilder<T & {
2117
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2747
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2118
2748
  }>;
2749
+ /** Sets `paddingLeft: "48px"`. */
2119
2750
  get pl6(): CssBuilder<T & {
2120
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2751
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2121
2752
  }>;
2753
+ /** Sets `paddingLeft: "56px"`. */
2122
2754
  get pl7(): CssBuilder<T & {
2123
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2755
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2124
2756
  }>;
2757
+ /** Sets `paddingLeft: "64px"`. */
2125
2758
  get pl8(): CssBuilder<T & {
2126
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2759
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2127
2760
  }>;
2761
+ /** Sets `paddingLeft: inc`. */
2128
2762
  pl(inc: number | string): CssBuilder<T & {
2129
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2763
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2130
2764
  }>;
2765
+ /** Sets `paddingLeft: px`. */
2131
2766
  plPx(px: number): CssBuilder<T & {
2132
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2767
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2133
2768
  }>;
2769
+ /** Sets `pl: "0px"; pr: "0px"`. */
2134
2770
  get px0(): CssBuilder<T & {
2135
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2771
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2136
2772
  } & {
2137
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2773
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2138
2774
  }>;
2775
+ /** Sets `pl: "8px"; pr: "8px"`. */
2139
2776
  get px1(): CssBuilder<T & {
2140
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2777
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2141
2778
  } & {
2142
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2779
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2143
2780
  }>;
2781
+ /** Sets `pl: "16px"; pr: "16px"`. */
2144
2782
  get px2(): CssBuilder<T & {
2145
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2783
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2146
2784
  } & {
2147
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2785
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2148
2786
  }>;
2787
+ /** Sets `pl: "24px"; pr: "24px"`. */
2149
2788
  get px3(): CssBuilder<T & {
2150
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2789
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2151
2790
  } & {
2152
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2791
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2153
2792
  }>;
2793
+ /** Sets `pl: "32px"; pr: "32px"`. */
2154
2794
  get px4(): CssBuilder<T & {
2155
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2795
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2156
2796
  } & {
2157
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2797
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2158
2798
  }>;
2799
+ /** Sets `pl: "40px"; pr: "40px"`. */
2159
2800
  get px5(): CssBuilder<T & {
2160
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2801
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2161
2802
  } & {
2162
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2803
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2163
2804
  }>;
2805
+ /** Sets `pl: "48px"; pr: "48px"`. */
2164
2806
  get px6(): CssBuilder<T & {
2165
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2807
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2166
2808
  } & {
2167
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2809
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2168
2810
  }>;
2811
+ /** Sets `pl: "56px"; pr: "56px"`. */
2169
2812
  get px7(): CssBuilder<T & {
2170
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2813
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2171
2814
  } & {
2172
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2815
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2173
2816
  }>;
2817
+ /** Sets `pl: "64px"; pr: "64px"`. */
2174
2818
  get px8(): CssBuilder<T & {
2175
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2819
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2176
2820
  } & {
2177
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2821
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2178
2822
  }>;
2179
2823
  px(inc: number | string): CssBuilder<T & {
2180
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2824
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2181
2825
  } & {
2182
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2826
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2183
2827
  }>;
2184
2828
  pxPx(px: number): CssBuilder<T & {
2185
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2829
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2186
2830
  } & {
2187
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2831
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2188
2832
  }>;
2833
+ /** Sets `pt: "0px"; pb: "0px"`. */
2189
2834
  get py0(): CssBuilder<T & {
2190
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2835
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2191
2836
  } & {
2192
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2837
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2193
2838
  }>;
2839
+ /** Sets `pt: "8px"; pb: "8px"`. */
2194
2840
  get py1(): CssBuilder<T & {
2195
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2841
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2196
2842
  } & {
2197
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2843
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2198
2844
  }>;
2845
+ /** Sets `pt: "16px"; pb: "16px"`. */
2199
2846
  get py2(): CssBuilder<T & {
2200
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2847
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2201
2848
  } & {
2202
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2849
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2203
2850
  }>;
2851
+ /** Sets `pt: "24px"; pb: "24px"`. */
2204
2852
  get py3(): CssBuilder<T & {
2205
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2853
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2206
2854
  } & {
2207
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2855
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2208
2856
  }>;
2857
+ /** Sets `pt: "32px"; pb: "32px"`. */
2209
2858
  get py4(): CssBuilder<T & {
2210
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2859
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2211
2860
  } & {
2212
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2861
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2213
2862
  }>;
2863
+ /** Sets `pt: "40px"; pb: "40px"`. */
2214
2864
  get py5(): CssBuilder<T & {
2215
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2865
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2216
2866
  } & {
2217
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2867
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2218
2868
  }>;
2869
+ /** Sets `pt: "48px"; pb: "48px"`. */
2219
2870
  get py6(): CssBuilder<T & {
2220
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2871
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2221
2872
  } & {
2222
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2873
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2223
2874
  }>;
2875
+ /** Sets `pt: "56px"; pb: "56px"`. */
2224
2876
  get py7(): CssBuilder<T & {
2225
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2877
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2226
2878
  } & {
2227
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2879
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2228
2880
  }>;
2881
+ /** Sets `pt: "64px"; pb: "64px"`. */
2229
2882
  get py8(): CssBuilder<T & {
2230
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2883
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2231
2884
  } & {
2232
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2885
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2233
2886
  }>;
2234
2887
  py(inc: number | string): CssBuilder<T & {
2235
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2888
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2236
2889
  } & {
2237
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2890
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2238
2891
  }>;
2239
2892
  pyPx(px: number): CssBuilder<T & {
2240
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2893
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2241
2894
  } & {
2242
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2895
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2243
2896
  }>;
2897
+ /** Sets `pt: "0px"; pb: "0px"; pr: "0px"; pl: "0px"`. */
2244
2898
  get p0(): CssBuilder<T & {
2245
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2899
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2246
2900
  } & {
2247
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2901
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2248
2902
  } & {
2249
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2903
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2250
2904
  } & {
2251
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2905
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2252
2906
  }>;
2907
+ /** Sets `pt: "8px"; pb: "8px"; pr: "8px"; pl: "8px"`. */
2253
2908
  get p1(): CssBuilder<T & {
2254
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2909
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2255
2910
  } & {
2256
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2911
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2257
2912
  } & {
2258
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2913
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2259
2914
  } & {
2260
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2915
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2261
2916
  }>;
2917
+ /** Sets `pt: "16px"; pb: "16px"; pr: "16px"; pl: "16px"`. */
2262
2918
  get p2(): CssBuilder<T & {
2263
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2919
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2264
2920
  } & {
2265
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2921
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2266
2922
  } & {
2267
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2923
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2268
2924
  } & {
2269
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2925
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2270
2926
  }>;
2927
+ /** Sets `pt: "24px"; pb: "24px"; pr: "24px"; pl: "24px"`. */
2271
2928
  get p3(): CssBuilder<T & {
2272
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2929
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2273
2930
  } & {
2274
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2931
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2275
2932
  } & {
2276
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2933
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2277
2934
  } & {
2278
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2935
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2279
2936
  }>;
2937
+ /** Sets `pt: "32px"; pb: "32px"; pr: "32px"; pl: "32px"`. */
2280
2938
  get p4(): CssBuilder<T & {
2281
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2939
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2282
2940
  } & {
2283
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2941
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2284
2942
  } & {
2285
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2943
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2286
2944
  } & {
2287
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2945
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2288
2946
  }>;
2947
+ /** Sets `pt: "40px"; pb: "40px"; pr: "40px"; pl: "40px"`. */
2289
2948
  get p5(): CssBuilder<T & {
2290
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2949
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2291
2950
  } & {
2292
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2951
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2293
2952
  } & {
2294
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2953
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2295
2954
  } & {
2296
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2955
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2297
2956
  }>;
2957
+ /** Sets `pt: "48px"; pb: "48px"; pr: "48px"; pl: "48px"`. */
2298
2958
  get p6(): CssBuilder<T & {
2299
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2959
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2300
2960
  } & {
2301
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2961
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2302
2962
  } & {
2303
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2963
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2304
2964
  } & {
2305
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2965
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2306
2966
  }>;
2967
+ /** Sets `pt: "56px"; pb: "56px"; pr: "56px"; pl: "56px"`. */
2307
2968
  get p7(): CssBuilder<T & {
2308
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2969
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2309
2970
  } & {
2310
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2971
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2311
2972
  } & {
2312
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2973
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2313
2974
  } & {
2314
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2975
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2315
2976
  }>;
2977
+ /** Sets `pt: "64px"; pb: "64px"; pr: "64px"; pl: "64px"`. */
2316
2978
  get p8(): CssBuilder<T & {
2317
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2979
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2318
2980
  } & {
2319
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2981
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2320
2982
  } & {
2321
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2983
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2322
2984
  } & {
2323
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2985
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2324
2986
  }>;
2325
2987
  p(inc: number | string): CssBuilder<T & {
2326
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2988
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2327
2989
  } & {
2328
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2990
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2329
2991
  } & {
2330
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2992
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2331
2993
  } & {
2332
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2994
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2333
2995
  }>;
2334
2996
  pPx(px: number): CssBuilder<T & {
2335
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2997
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2336
2998
  } & {
2337
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2999
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2338
3000
  } & {
2339
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
3001
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2340
3002
  } & {
2341
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
3003
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2342
3004
  }>;
3005
+ /** Sets `textAlign: "left"`. */
2343
3006
  get tl(): CssBuilder<T & {
2344
3007
  textAlign: import("csstype").Property.TextAlign | undefined;
2345
3008
  }>;
3009
+ /** Sets `textAlign: "center"`. */
2346
3010
  get tc(): CssBuilder<T & {
2347
3011
  textAlign: import("csstype").Property.TextAlign | undefined;
2348
3012
  }>;
3013
+ /** Sets `textAlign: "right"`. */
2349
3014
  get tr(): CssBuilder<T & {
2350
3015
  textAlign: import("csstype").Property.TextAlign | undefined;
2351
3016
  }>;
3017
+ /** Sets `textAlign: "justify"`. */
2352
3018
  get tj(): CssBuilder<T & {
2353
3019
  textAlign: import("csstype").Property.TextAlign | undefined;
2354
3020
  }>;
3021
+ /** Sets `textAlign: value`. */
2355
3022
  ta(value: Properties["textAlign"]): CssBuilder<T & {
2356
3023
  textAlign: import("csstype").Property.TextAlign | undefined;
2357
3024
  }>;
3025
+ /** Sets `textDecoration: "none"`. */
2358
3026
  get noUnderline(): CssBuilder<T & {
2359
- textDecoration: import("csstype").Property.TextDecoration<0 | (string & {})> | undefined;
3027
+ textDecoration: import("csstype").Property.TextDecoration<string | 0> | undefined;
2360
3028
  }>;
3029
+ /** Sets `textDecoration: "line-through"`. */
2361
3030
  get strike(): CssBuilder<T & {
2362
- textDecoration: import("csstype").Property.TextDecoration<0 | (string & {})> | undefined;
3031
+ textDecoration: import("csstype").Property.TextDecoration<string | 0> | undefined;
2363
3032
  }>;
3033
+ /** Sets `textDecoration: "underline"`. */
2364
3034
  get underline(): CssBuilder<T & {
2365
- textDecoration: import("csstype").Property.TextDecoration<0 | (string & {})> | undefined;
3035
+ textDecoration: import("csstype").Property.TextDecoration<string | 0> | undefined;
2366
3036
  }>;
3037
+ /** Sets `textDecoration: value`. */
2367
3038
  textDecoration(value: Properties["textDecoration"]): CssBuilder<T & {
2368
- textDecoration: import("csstype").Property.TextDecoration<0 | (string & {})> | undefined;
3039
+ textDecoration: import("csstype").Property.TextDecoration<string | 0> | undefined;
2369
3040
  }>;
3041
+ /** Sets `textTransform: "capitalize"`. */
2370
3042
  get ttc(): CssBuilder<T & {
2371
3043
  textTransform: import("csstype").Property.TextTransform | undefined;
2372
3044
  }>;
3045
+ /** Sets `textTransform: "lowercase"`. */
2373
3046
  get ttl(): CssBuilder<T & {
2374
3047
  textTransform: import("csstype").Property.TextTransform | undefined;
2375
3048
  }>;
3049
+ /** Sets `textTransform: "uppercase"`. */
2376
3050
  get ttu(): CssBuilder<T & {
2377
3051
  textTransform: import("csstype").Property.TextTransform | undefined;
2378
3052
  }>;
3053
+ /** Sets `textTransform: "none"`. */
2379
3054
  get ttn(): CssBuilder<T & {
2380
3055
  textTransform: import("csstype").Property.TextTransform | undefined;
2381
3056
  }>;
3057
+ /** Sets `textTransform: value`. */
2382
3058
  tt(value: Properties["textTransform"]): CssBuilder<T & {
2383
3059
  textTransform: import("csstype").Property.TextTransform | undefined;
2384
3060
  }>;
3061
+ /** Sets `fontWeight: 400; fontSize: "10px"; lineHeight: "14px"`. */
2385
3062
  get tiny(): CssBuilder<T & {
2386
3063
  fontWeight: import("csstype").Property.FontWeight | undefined;
2387
3064
  } & {
2388
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3065
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2389
3066
  } & {
2390
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3067
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2391
3068
  }>;
3069
+ /** Sets `fontWeight: 500; fontSize: "10px"; lineHeight: "14px"`. */
2392
3070
  get tinyMd(): CssBuilder<T & {
2393
3071
  fontWeight: import("csstype").Property.FontWeight | undefined;
2394
3072
  } & {
2395
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3073
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2396
3074
  } & {
2397
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3075
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2398
3076
  }>;
3077
+ /** Sets `fontWeight: 600; fontSize: "10px"; lineHeight: "14px"`. */
2399
3078
  get tinySb(): CssBuilder<T & {
2400
3079
  fontWeight: import("csstype").Property.FontWeight | undefined;
2401
3080
  } & {
2402
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3081
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2403
3082
  } & {
2404
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3083
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2405
3084
  }>;
3085
+ /** Sets `fontWeight: 700; fontSize: "10px"; lineHeight: "14px"`. */
2406
3086
  get tinyBd(): CssBuilder<T & {
2407
3087
  fontWeight: import("csstype").Property.FontWeight | undefined;
2408
3088
  } & {
2409
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3089
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2410
3090
  } & {
2411
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3091
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2412
3092
  }>;
3093
+ /** Sets `fontWeight: 400; fontSize: "12px"; lineHeight: "16px"`. */
2413
3094
  get xs(): CssBuilder<T & {
2414
3095
  fontWeight: import("csstype").Property.FontWeight | undefined;
2415
3096
  } & {
2416
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3097
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2417
3098
  } & {
2418
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3099
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2419
3100
  }>;
3101
+ /** Sets `fontWeight: 500; fontSize: "12px"; lineHeight: "16px"`. */
2420
3102
  get xsMd(): CssBuilder<T & {
2421
3103
  fontWeight: import("csstype").Property.FontWeight | undefined;
2422
3104
  } & {
2423
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3105
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2424
3106
  } & {
2425
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3107
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2426
3108
  }>;
3109
+ /** Sets `fontWeight: 600; fontSize: "12px"; lineHeight: "16px"`. */
2427
3110
  get xsSb(): CssBuilder<T & {
2428
3111
  fontWeight: import("csstype").Property.FontWeight | undefined;
2429
3112
  } & {
2430
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3113
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2431
3114
  } & {
2432
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3115
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2433
3116
  }>;
3117
+ /** Sets `fontWeight: 700; fontSize: "12px"; lineHeight: "16px"`. */
2434
3118
  get xsBd(): CssBuilder<T & {
2435
3119
  fontWeight: import("csstype").Property.FontWeight | undefined;
2436
3120
  } & {
2437
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3121
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2438
3122
  } & {
2439
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3123
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2440
3124
  }>;
3125
+ /** Sets `fontWeight: 400; fontSize: "14px"; lineHeight: "20px"`. */
2441
3126
  get sm(): CssBuilder<T & {
2442
3127
  fontWeight: import("csstype").Property.FontWeight | undefined;
2443
3128
  } & {
2444
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3129
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2445
3130
  } & {
2446
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3131
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2447
3132
  }>;
3133
+ /** Sets `fontWeight: 500; fontSize: "14px"; lineHeight: "20px"`. */
2448
3134
  get smMd(): CssBuilder<T & {
2449
3135
  fontWeight: import("csstype").Property.FontWeight | undefined;
2450
3136
  } & {
2451
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3137
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2452
3138
  } & {
2453
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3139
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2454
3140
  }>;
3141
+ /** Sets `fontWeight: 600; fontSize: "14px"; lineHeight: "20px"`. */
2455
3142
  get smSb(): CssBuilder<T & {
2456
3143
  fontWeight: import("csstype").Property.FontWeight | undefined;
2457
3144
  } & {
2458
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3145
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2459
3146
  } & {
2460
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3147
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2461
3148
  }>;
3149
+ /** Sets `fontWeight: 700; fontSize: "14px"; lineHeight: "20px"`. */
2462
3150
  get smBd(): CssBuilder<T & {
2463
3151
  fontWeight: import("csstype").Property.FontWeight | undefined;
2464
3152
  } & {
2465
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3153
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2466
3154
  } & {
2467
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3155
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2468
3156
  }>;
3157
+ /** Sets `fontWeight: 400; fontSize: "16px"; lineHeight: "24px"`. */
2469
3158
  get base(): CssBuilder<T & {
2470
3159
  fontWeight: import("csstype").Property.FontWeight | undefined;
2471
3160
  } & {
2472
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3161
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2473
3162
  } & {
2474
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3163
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2475
3164
  }>;
3165
+ /** Sets `fontWeight: 500; fontSize: "16px"; lineHeight: "24px"`. */
2476
3166
  get baseMd(): CssBuilder<T & {
2477
3167
  fontWeight: import("csstype").Property.FontWeight | undefined;
2478
3168
  } & {
2479
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3169
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2480
3170
  } & {
2481
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3171
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2482
3172
  }>;
3173
+ /** Sets `fontWeight: 600; fontSize: "16px"; lineHeight: "24px"`. */
2483
3174
  get baseSb(): CssBuilder<T & {
2484
3175
  fontWeight: import("csstype").Property.FontWeight | undefined;
2485
3176
  } & {
2486
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3177
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2487
3178
  } & {
2488
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3179
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2489
3180
  }>;
3181
+ /** Sets `fontWeight: 700; fontSize: "16px"; lineHeight: "24px"`. */
2490
3182
  get baseBd(): CssBuilder<T & {
2491
3183
  fontWeight: import("csstype").Property.FontWeight | undefined;
2492
3184
  } & {
2493
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3185
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2494
3186
  } & {
2495
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3187
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2496
3188
  }>;
3189
+ /** Sets `fontWeight: 400; fontSize: "18px"; lineHeight: "28px"`. */
2497
3190
  get lg(): CssBuilder<T & {
2498
3191
  fontWeight: import("csstype").Property.FontWeight | undefined;
2499
3192
  } & {
2500
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3193
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2501
3194
  } & {
2502
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3195
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2503
3196
  }>;
3197
+ /** Sets `fontWeight: 500; fontSize: "18px"; lineHeight: "28px"`. */
2504
3198
  get lgMd(): CssBuilder<T & {
2505
3199
  fontWeight: import("csstype").Property.FontWeight | undefined;
2506
3200
  } & {
2507
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3201
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2508
3202
  } & {
2509
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3203
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2510
3204
  }>;
3205
+ /** Sets `fontWeight: 600; fontSize: "18px"; lineHeight: "28px"`. */
2511
3206
  get lgSb(): CssBuilder<T & {
2512
3207
  fontWeight: import("csstype").Property.FontWeight | undefined;
2513
3208
  } & {
2514
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3209
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2515
3210
  } & {
2516
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3211
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2517
3212
  }>;
3213
+ /** Sets `fontWeight: 700; fontSize: "18px"; lineHeight: "28px"`. */
2518
3214
  get lgBd(): CssBuilder<T & {
2519
3215
  fontWeight: import("csstype").Property.FontWeight | undefined;
2520
3216
  } & {
2521
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3217
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2522
3218
  } & {
2523
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3219
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2524
3220
  }>;
3221
+ /** Sets `fontWeight: 400; fontSize: "20px"; lineHeight: "28px"`. */
2525
3222
  get xl(): CssBuilder<T & {
2526
3223
  fontWeight: import("csstype").Property.FontWeight | undefined;
2527
3224
  } & {
2528
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3225
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2529
3226
  } & {
2530
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3227
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2531
3228
  }>;
3229
+ /** Sets `fontWeight: 500; fontSize: "20px"; lineHeight: "28px"`. */
2532
3230
  get xlMd(): CssBuilder<T & {
2533
3231
  fontWeight: import("csstype").Property.FontWeight | undefined;
2534
3232
  } & {
2535
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3233
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2536
3234
  } & {
2537
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3235
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2538
3236
  }>;
3237
+ /** Sets `fontWeight: 600; fontSize: "20px"; lineHeight: "28px"`. */
2539
3238
  get xlSb(): CssBuilder<T & {
2540
3239
  fontWeight: import("csstype").Property.FontWeight | undefined;
2541
3240
  } & {
2542
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3241
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2543
3242
  } & {
2544
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3243
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2545
3244
  }>;
3245
+ /** Sets `fontWeight: 700; fontSize: "20px"; lineHeight: "28px"`. */
2546
3246
  get xlBd(): CssBuilder<T & {
2547
3247
  fontWeight: import("csstype").Property.FontWeight | undefined;
2548
3248
  } & {
2549
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3249
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2550
3250
  } & {
2551
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3251
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2552
3252
  }>;
3253
+ /** Sets `fontWeight: 400; fontSize: "24px"; lineHeight: "32px"`. */
2553
3254
  get xl2(): CssBuilder<T & {
2554
3255
  fontWeight: import("csstype").Property.FontWeight | undefined;
2555
3256
  } & {
2556
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3257
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2557
3258
  } & {
2558
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3259
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2559
3260
  }>;
3261
+ /** Sets `fontWeight: 500; fontSize: "24px"; lineHeight: "32px"`. */
2560
3262
  get xl2Md(): CssBuilder<T & {
2561
3263
  fontWeight: import("csstype").Property.FontWeight | undefined;
2562
3264
  } & {
2563
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3265
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2564
3266
  } & {
2565
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3267
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2566
3268
  }>;
3269
+ /** Sets `fontWeight: 600; fontSize: "24px"; lineHeight: "32px"`. */
2567
3270
  get xl2Sb(): CssBuilder<T & {
2568
3271
  fontWeight: import("csstype").Property.FontWeight | undefined;
2569
3272
  } & {
2570
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3273
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2571
3274
  } & {
2572
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3275
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2573
3276
  }>;
3277
+ /** Sets `fontWeight: 700; fontSize: "24px"; lineHeight: "32px"`. */
2574
3278
  get xl2Bd(): CssBuilder<T & {
2575
3279
  fontWeight: import("csstype").Property.FontWeight | undefined;
2576
3280
  } & {
2577
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3281
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2578
3282
  } & {
2579
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3283
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2580
3284
  }>;
3285
+ /** Sets `fontWeight: 400; fontSize: "30px"; lineHeight: "36px"`. */
2581
3286
  get xl3(): CssBuilder<T & {
2582
3287
  fontWeight: import("csstype").Property.FontWeight | undefined;
2583
3288
  } & {
2584
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3289
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2585
3290
  } & {
2586
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3291
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2587
3292
  }>;
3293
+ /** Sets `fontWeight: 500; fontSize: "30px"; lineHeight: "36px"`. */
2588
3294
  get xl3Md(): CssBuilder<T & {
2589
3295
  fontWeight: import("csstype").Property.FontWeight | undefined;
2590
3296
  } & {
2591
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3297
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2592
3298
  } & {
2593
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3299
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2594
3300
  }>;
3301
+ /** Sets `fontWeight: 600; fontSize: "30px"; lineHeight: "36px"`. */
2595
3302
  get xl3Sb(): CssBuilder<T & {
2596
3303
  fontWeight: import("csstype").Property.FontWeight | undefined;
2597
3304
  } & {
2598
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3305
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2599
3306
  } & {
2600
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3307
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2601
3308
  }>;
3309
+ /** Sets `fontWeight: 700; fontSize: "30px"; lineHeight: "36px"`. */
2602
3310
  get xl3Bd(): CssBuilder<T & {
2603
3311
  fontWeight: import("csstype").Property.FontWeight | undefined;
2604
3312
  } & {
2605
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3313
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2606
3314
  } & {
2607
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3315
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2608
3316
  }>;
3317
+ /** Sets `fontWeight: 400; fontSize: "36px"; lineHeight: "40px"`. */
2609
3318
  get xl4(): CssBuilder<T & {
2610
3319
  fontWeight: import("csstype").Property.FontWeight | undefined;
2611
3320
  } & {
2612
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3321
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2613
3322
  } & {
2614
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3323
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2615
3324
  }>;
3325
+ /** Sets `fontWeight: 500; fontSize: "36px"; lineHeight: "40px"`. */
2616
3326
  get xl4Md(): CssBuilder<T & {
2617
3327
  fontWeight: import("csstype").Property.FontWeight | undefined;
2618
3328
  } & {
2619
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3329
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2620
3330
  } & {
2621
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3331
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2622
3332
  }>;
3333
+ /** Sets `fontWeight: 600; fontSize: "36px"; lineHeight: "40px"`. */
2623
3334
  get xl4Sb(): CssBuilder<T & {
2624
3335
  fontWeight: import("csstype").Property.FontWeight | undefined;
2625
3336
  } & {
2626
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3337
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2627
3338
  } & {
2628
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3339
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2629
3340
  }>;
3341
+ /** Sets `fontWeight: 700; fontSize: "36px"; lineHeight: "40px"`. */
2630
3342
  get xl4Bd(): CssBuilder<T & {
2631
3343
  fontWeight: import("csstype").Property.FontWeight | undefined;
2632
3344
  } & {
2633
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3345
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2634
3346
  } & {
2635
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3347
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2636
3348
  }>;
3349
+ /** Sets `fontWeight: 400; fontSize: "48px"; lineHeight: "48px"`. */
2637
3350
  get xl5(): CssBuilder<T & {
2638
3351
  fontWeight: import("csstype").Property.FontWeight | undefined;
2639
3352
  } & {
2640
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3353
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2641
3354
  } & {
2642
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3355
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2643
3356
  }>;
3357
+ /** Sets `fontWeight: 500; fontSize: "48px"; lineHeight: "48px"`. */
2644
3358
  get xl5Md(): CssBuilder<T & {
2645
3359
  fontWeight: import("csstype").Property.FontWeight | undefined;
2646
3360
  } & {
2647
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3361
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2648
3362
  } & {
2649
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3363
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2650
3364
  }>;
3365
+ /** Sets `fontWeight: 600; fontSize: "48px"; lineHeight: "48px"`. */
2651
3366
  get xl5Sb(): CssBuilder<T & {
2652
3367
  fontWeight: import("csstype").Property.FontWeight | undefined;
2653
3368
  } & {
2654
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3369
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2655
3370
  } & {
2656
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3371
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2657
3372
  }>;
3373
+ /** Sets `fontWeight: 700; fontSize: "48px"; lineHeight: "48px"`. */
2658
3374
  get xl5Bd(): CssBuilder<T & {
2659
3375
  fontWeight: import("csstype").Property.FontWeight | undefined;
2660
3376
  } & {
2661
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3377
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2662
3378
  } & {
2663
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3379
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2664
3380
  }>;
3381
+ /** Sets `maxWidth: "30em"`. */
2665
3382
  get measure(): CssBuilder<T & {
2666
- maxWidth: import("csstype").Property.MaxWidth<0 | (string & {})> | undefined;
3383
+ maxWidth: import("csstype").Property.MaxWidth<string | 0> | undefined;
2667
3384
  }>;
3385
+ /** Sets `maxWidth: "34em"`. */
2668
3386
  get measureWide(): CssBuilder<T & {
2669
- maxWidth: import("csstype").Property.MaxWidth<0 | (string & {})> | undefined;
3387
+ maxWidth: import("csstype").Property.MaxWidth<string | 0> | undefined;
2670
3388
  }>;
3389
+ /** Sets `maxWidth: "20em"`. */
2671
3390
  get measureNarrow(): CssBuilder<T & {
2672
- maxWidth: import("csstype").Property.MaxWidth<0 | (string & {})> | undefined;
3391
+ maxWidth: import("csstype").Property.MaxWidth<string | 0> | undefined;
2673
3392
  }>;
3393
+ /** Sets `textIndent: "1em"; marginTop: 0; marginBottom: 0`. */
2674
3394
  get indent(): CssBuilder<T & {
2675
- textIndent: import("csstype").Property.TextIndent<0 | (string & {})> | undefined;
3395
+ textIndent: import("csstype").Property.TextIndent<string | 0> | undefined;
2676
3396
  } & {
2677
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
3397
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
2678
3398
  } & {
2679
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
3399
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
2680
3400
  }>;
3401
+ /** Sets `fontVariant: "small-caps"`. */
2681
3402
  get smallCaps(): CssBuilder<T & {
2682
3403
  fontVariant: import("csstype").Property.FontVariant | undefined;
2683
3404
  }>;
3405
+ /** Sets `whiteSpace: "nowrap"; overflow: "hidden"; textOverflow: "ellipsis"`. */
2684
3406
  get truncate(): CssBuilder<T & {
2685
3407
  whiteSpace: import("csstype").Property.WhiteSpace | undefined;
2686
3408
  } & {
@@ -2688,217 +3410,285 @@ declare class CssBuilder<T extends Properties1> {
2688
3410
  } & {
2689
3411
  textOverflow: import("csstype").Property.TextOverflow | undefined;
2690
3412
  }>;
3413
+ /** Sets `lineHeight: value`. */
2691
3414
  lh(value: Properties["lineHeight"]): CssBuilder<T & {
2692
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3415
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2693
3416
  }>;
3417
+ /** Sets `userSelect: "none"`. */
2694
3418
  get selectNone(): CssBuilder<T & {
2695
3419
  userSelect: import("csstype").Property.UserSelect | undefined;
2696
3420
  }>;
3421
+ /** Sets `userSelect: "text"`. */
2697
3422
  get selectText(): CssBuilder<T & {
2698
3423
  userSelect: import("csstype").Property.UserSelect | undefined;
2699
3424
  }>;
3425
+ /** Sets `userSelect: "all"`. */
2700
3426
  get selectAll(): CssBuilder<T & {
2701
3427
  userSelect: import("csstype").Property.UserSelect | undefined;
2702
3428
  }>;
3429
+ /** Sets `userSelect: "auto"`. */
2703
3430
  get selectAuto(): CssBuilder<T & {
2704
3431
  userSelect: import("csstype").Property.UserSelect | undefined;
2705
3432
  }>;
3433
+ /** Sets `userSelect: value`. */
2706
3434
  select(value: Properties["userSelect"]): CssBuilder<T & {
2707
3435
  userSelect: import("csstype").Property.UserSelect | undefined;
2708
3436
  }>;
3437
+ /** Sets `verticalAlign: "baseline"`. */
2709
3438
  get vBase(): CssBuilder<T & {
2710
- verticalAlign: import("csstype").Property.VerticalAlign<0 | (string & {})> | undefined;
3439
+ verticalAlign: import("csstype").Property.VerticalAlign<string | 0> | undefined;
2711
3440
  }>;
3441
+ /** Sets `verticalAlign: "middle"`. */
2712
3442
  get vMid(): CssBuilder<T & {
2713
- verticalAlign: import("csstype").Property.VerticalAlign<0 | (string & {})> | undefined;
3443
+ verticalAlign: import("csstype").Property.VerticalAlign<string | 0> | undefined;
2714
3444
  }>;
3445
+ /** Sets `verticalAlign: "top"`. */
2715
3446
  get vTop(): CssBuilder<T & {
2716
- verticalAlign: import("csstype").Property.VerticalAlign<0 | (string & {})> | undefined;
3447
+ verticalAlign: import("csstype").Property.VerticalAlign<string | 0> | undefined;
2717
3448
  }>;
3449
+ /** Sets `verticalAlign: "bottom"`. */
2718
3450
  get vBottom(): CssBuilder<T & {
2719
- verticalAlign: import("csstype").Property.VerticalAlign<0 | (string & {})> | undefined;
3451
+ verticalAlign: import("csstype").Property.VerticalAlign<string | 0> | undefined;
2720
3452
  }>;
3453
+ /** Sets `verticalAlign: value`. */
2721
3454
  va(value: Properties["verticalAlign"]): CssBuilder<T & {
2722
- verticalAlign: import("csstype").Property.VerticalAlign<0 | (string & {})> | undefined;
3455
+ verticalAlign: import("csstype").Property.VerticalAlign<string | 0> | undefined;
2723
3456
  }>;
3457
+ /** Sets `visibility: "visible"`. */
2724
3458
  get visible(): CssBuilder<T & {
2725
3459
  visibility: import("csstype").Property.Visibility | undefined;
2726
3460
  }>;
3461
+ /** Sets `visibility: "hidden"`. */
2727
3462
  get invisible(): CssBuilder<T & {
2728
3463
  visibility: import("csstype").Property.Visibility | undefined;
2729
3464
  }>;
3465
+ /** Sets `visibility: value`. */
2730
3466
  visibility(value: Properties["visibility"]): CssBuilder<T & {
2731
3467
  visibility: import("csstype").Property.Visibility | undefined;
2732
3468
  }>;
3469
+ /** Sets `whiteSpace: "nowrap"`. */
2733
3470
  get nowrap(): CssBuilder<T & {
2734
3471
  whiteSpace: import("csstype").Property.WhiteSpace | undefined;
2735
3472
  }>;
3473
+ /** Sets `whiteSpace: "pre"`. */
2736
3474
  get pre(): CssBuilder<T & {
2737
3475
  whiteSpace: import("csstype").Property.WhiteSpace | undefined;
2738
3476
  }>;
3477
+ /** Sets `whiteSpace: "normal"`. */
2739
3478
  get wsNormal(): CssBuilder<T & {
2740
3479
  whiteSpace: import("csstype").Property.WhiteSpace | undefined;
2741
3480
  }>;
3481
+ /** Sets `whiteSpace: value`. */
2742
3482
  whiteSpace(value: Properties["whiteSpace"]): CssBuilder<T & {
2743
3483
  whiteSpace: import("csstype").Property.WhiteSpace | undefined;
2744
3484
  }>;
3485
+ /** Sets `width: "25%"`. */
2745
3486
  get w25(): CssBuilder<T & {
2746
- width: import("csstype").Property.Width<0 | (string & {})> | undefined;
3487
+ width: import("csstype").Property.Width<string | 0> | undefined;
2747
3488
  }>;
3489
+ /** Sets `width: "50%"`. */
2748
3490
  get w50(): CssBuilder<T & {
2749
- width: import("csstype").Property.Width<0 | (string & {})> | undefined;
3491
+ width: import("csstype").Property.Width<string | 0> | undefined;
2750
3492
  }>;
3493
+ /** Sets `width: "75%"`. */
2751
3494
  get w75(): CssBuilder<T & {
2752
- width: import("csstype").Property.Width<0 | (string & {})> | undefined;
3495
+ width: import("csstype").Property.Width<string | 0> | undefined;
2753
3496
  }>;
3497
+ /** Sets `width: "100%"`. */
2754
3498
  get w100(): CssBuilder<T & {
2755
- width: import("csstype").Property.Width<0 | (string & {})> | undefined;
3499
+ width: import("csstype").Property.Width<string | 0> | undefined;
2756
3500
  }>;
3501
+ /** Sets `minWidth: 0`. */
2757
3502
  get mw0(): CssBuilder<T & {
2758
- minWidth: import("csstype").Property.MinWidth<0 | (string & {})> | undefined;
3503
+ minWidth: import("csstype").Property.MinWidth<string | 0> | undefined;
2759
3504
  }>;
3505
+ /** Sets `minWidth: "25%"`. */
2760
3506
  get mw25(): CssBuilder<T & {
2761
- minWidth: import("csstype").Property.MinWidth<0 | (string & {})> | undefined;
3507
+ minWidth: import("csstype").Property.MinWidth<string | 0> | undefined;
2762
3508
  }>;
3509
+ /** Sets `minWidth: "50%"`. */
2763
3510
  get mw50(): CssBuilder<T & {
2764
- minWidth: import("csstype").Property.MinWidth<0 | (string & {})> | undefined;
3511
+ minWidth: import("csstype").Property.MinWidth<string | 0> | undefined;
2765
3512
  }>;
3513
+ /** Sets `minWidth: "75%"`. */
2766
3514
  get mw75(): CssBuilder<T & {
2767
- minWidth: import("csstype").Property.MinWidth<0 | (string & {})> | undefined;
3515
+ minWidth: import("csstype").Property.MinWidth<string | 0> | undefined;
2768
3516
  }>;
3517
+ /** Sets `minWidth: "100%"`. */
2769
3518
  get mw100(): CssBuilder<T & {
2770
- minWidth: import("csstype").Property.MinWidth<0 | (string & {})> | undefined;
3519
+ minWidth: import("csstype").Property.MinWidth<string | 0> | undefined;
2771
3520
  }>;
3521
+ /** Sets `minWidth: value`. */
2772
3522
  mw(value: Properties["minWidth"]): CssBuilder<T & {
2773
- minWidth: import("csstype").Property.MinWidth<0 | (string & {})> | undefined;
3523
+ minWidth: import("csstype").Property.MinWidth<string | 0> | undefined;
2774
3524
  }>;
3525
+ /** Sets `minWidth: px`. */
2775
3526
  mwPx(px: number): CssBuilder<T & {
2776
- minWidth: import("csstype").Property.MinWidth<0 | (string & {})> | undefined;
3527
+ minWidth: import("csstype").Property.MinWidth<string | 0> | undefined;
2777
3528
  }>;
3529
+ /** Sets `maxWidth: "0"`. */
2778
3530
  get maxw0(): CssBuilder<T & {
2779
- maxWidth: import("csstype").Property.MaxWidth<0 | (string & {})> | undefined;
3531
+ maxWidth: import("csstype").Property.MaxWidth<string | 0> | undefined;
2780
3532
  }>;
3533
+ /** Sets `maxWidth: "25%"`. */
2781
3534
  get maxw25(): CssBuilder<T & {
2782
- maxWidth: import("csstype").Property.MaxWidth<0 | (string & {})> | undefined;
3535
+ maxWidth: import("csstype").Property.MaxWidth<string | 0> | undefined;
2783
3536
  }>;
3537
+ /** Sets `maxWidth: "50%"`. */
2784
3538
  get maxw50(): CssBuilder<T & {
2785
- maxWidth: import("csstype").Property.MaxWidth<0 | (string & {})> | undefined;
3539
+ maxWidth: import("csstype").Property.MaxWidth<string | 0> | undefined;
2786
3540
  }>;
3541
+ /** Sets `maxWidth: "75%"`. */
2787
3542
  get maxw75(): CssBuilder<T & {
2788
- maxWidth: import("csstype").Property.MaxWidth<0 | (string & {})> | undefined;
3543
+ maxWidth: import("csstype").Property.MaxWidth<string | 0> | undefined;
2789
3544
  }>;
3545
+ /** Sets `maxWidth: "100%"`. */
2790
3546
  get maxw100(): CssBuilder<T & {
2791
- maxWidth: import("csstype").Property.MaxWidth<0 | (string & {})> | undefined;
3547
+ maxWidth: import("csstype").Property.MaxWidth<string | 0> | undefined;
2792
3548
  }>;
3549
+ /** Sets `maxWidth: value`. */
2793
3550
  maxw(value: Properties["maxWidth"]): CssBuilder<T & {
2794
- maxWidth: import("csstype").Property.MaxWidth<0 | (string & {})> | undefined;
3551
+ maxWidth: import("csstype").Property.MaxWidth<string | 0> | undefined;
2795
3552
  }>;
3553
+ /** Sets `maxWidth: px`. */
2796
3554
  maxwPx(px: number): CssBuilder<T & {
2797
- maxWidth: import("csstype").Property.MaxWidth<0 | (string & {})> | undefined;
3555
+ maxWidth: import("csstype").Property.MaxWidth<string | 0> | undefined;
2798
3556
  }>;
3557
+ /** Sets `width: "0px"`. */
2799
3558
  get w0(): CssBuilder<T & {
2800
- width: import("csstype").Property.Width<0 | (string & {})> | undefined;
3559
+ width: import("csstype").Property.Width<string | 0> | undefined;
2801
3560
  }>;
3561
+ /** Sets `width: "8px"`. */
2802
3562
  get w1(): CssBuilder<T & {
2803
- width: import("csstype").Property.Width<0 | (string & {})> | undefined;
3563
+ width: import("csstype").Property.Width<string | 0> | undefined;
2804
3564
  }>;
3565
+ /** Sets `width: "16px"`. */
2805
3566
  get w2(): CssBuilder<T & {
2806
- width: import("csstype").Property.Width<0 | (string & {})> | undefined;
3567
+ width: import("csstype").Property.Width<string | 0> | undefined;
2807
3568
  }>;
3569
+ /** Sets `width: "24px"`. */
2808
3570
  get w3(): CssBuilder<T & {
2809
- width: import("csstype").Property.Width<0 | (string & {})> | undefined;
3571
+ width: import("csstype").Property.Width<string | 0> | undefined;
2810
3572
  }>;
3573
+ /** Sets `width: "32px"`. */
2811
3574
  get w4(): CssBuilder<T & {
2812
- width: import("csstype").Property.Width<0 | (string & {})> | undefined;
3575
+ width: import("csstype").Property.Width<string | 0> | undefined;
2813
3576
  }>;
3577
+ /** Sets `width: "40px"`. */
2814
3578
  get w5(): CssBuilder<T & {
2815
- width: import("csstype").Property.Width<0 | (string & {})> | undefined;
3579
+ width: import("csstype").Property.Width<string | 0> | undefined;
2816
3580
  }>;
3581
+ /** Sets `width: "48px"`. */
2817
3582
  get w6(): CssBuilder<T & {
2818
- width: import("csstype").Property.Width<0 | (string & {})> | undefined;
3583
+ width: import("csstype").Property.Width<string | 0> | undefined;
2819
3584
  }>;
3585
+ /** Sets `width: "56px"`. */
2820
3586
  get w7(): CssBuilder<T & {
2821
- width: import("csstype").Property.Width<0 | (string & {})> | undefined;
3587
+ width: import("csstype").Property.Width<string | 0> | undefined;
2822
3588
  }>;
3589
+ /** Sets `width: "64px"`. */
2823
3590
  get w8(): CssBuilder<T & {
2824
- width: import("csstype").Property.Width<0 | (string & {})> | undefined;
3591
+ width: import("csstype").Property.Width<string | 0> | undefined;
2825
3592
  }>;
3593
+ /** Sets `width: inc`. */
2826
3594
  w(inc: number | string): CssBuilder<T & {
2827
- width: import("csstype").Property.Width<0 | (string & {})> | undefined;
3595
+ width: import("csstype").Property.Width<string | 0> | undefined;
2828
3596
  }>;
3597
+ /** Sets `width: px`. */
2829
3598
  wPx(px: number): CssBuilder<T & {
2830
- width: import("csstype").Property.Width<0 | (string & {})> | undefined;
3599
+ width: import("csstype").Property.Width<string | 0> | undefined;
2831
3600
  }>;
3601
+ /** Sets `wordBreak: "normal"`. */
2832
3602
  get breakNormal(): CssBuilder<T & {
2833
3603
  wordBreak: import("csstype").Property.WordBreak | undefined;
2834
3604
  }>;
3605
+ /** Sets `wordBreak: "break-all"`. */
2835
3606
  get breakAll(): CssBuilder<T & {
2836
3607
  wordBreak: import("csstype").Property.WordBreak | undefined;
2837
3608
  }>;
3609
+ /** Sets `wordBreak: "keep-all"`. */
2838
3610
  get breakKeepAll(): CssBuilder<T & {
2839
3611
  wordBreak: import("csstype").Property.WordBreak | undefined;
2840
3612
  }>;
3613
+ /** Sets `wordBreak: "break-word"`. */
2841
3614
  get breakWord(): CssBuilder<T & {
2842
3615
  wordBreak: import("csstype").Property.WordBreak | undefined;
2843
3616
  }>;
3617
+ /** Sets `wordBreak: value`. */
2844
3618
  wordBreak(value: Properties["wordBreak"]): CssBuilder<T & {
2845
3619
  wordBreak: import("csstype").Property.WordBreak | undefined;
2846
3620
  }>;
3621
+ /** Sets `zIndex: 0`. */
2847
3622
  get z0(): CssBuilder<T & {
2848
3623
  zIndex: import("csstype").Property.ZIndex | undefined;
2849
3624
  }>;
3625
+ /** Sets `zIndex: 1`. */
2850
3626
  get z1(): CssBuilder<T & {
2851
3627
  zIndex: import("csstype").Property.ZIndex | undefined;
2852
3628
  }>;
3629
+ /** Sets `zIndex: 2`. */
2853
3630
  get z2(): CssBuilder<T & {
2854
3631
  zIndex: import("csstype").Property.ZIndex | undefined;
2855
3632
  }>;
3633
+ /** Sets `zIndex: 3`. */
2856
3634
  get z3(): CssBuilder<T & {
2857
3635
  zIndex: import("csstype").Property.ZIndex | undefined;
2858
3636
  }>;
3637
+ /** Sets `zIndex: 4`. */
2859
3638
  get z4(): CssBuilder<T & {
2860
3639
  zIndex: import("csstype").Property.ZIndex | undefined;
2861
3640
  }>;
3641
+ /** Sets `zIndex: 5`. */
2862
3642
  get z5(): CssBuilder<T & {
2863
3643
  zIndex: import("csstype").Property.ZIndex | undefined;
2864
3644
  }>;
3645
+ /** Sets `zIndex: 999`. */
2865
3646
  get z999(): CssBuilder<T & {
2866
3647
  zIndex: import("csstype").Property.ZIndex | undefined;
2867
3648
  }>;
3649
+ /** Sets `zIndex: 9999`. */
2868
3650
  get z9999(): CssBuilder<T & {
2869
3651
  zIndex: import("csstype").Property.ZIndex | undefined;
2870
3652
  }>;
3653
+ /** Sets `zIndex: "inherit"`. */
2871
3654
  get zInherit(): CssBuilder<T & {
2872
3655
  zIndex: import("csstype").Property.ZIndex | undefined;
2873
3656
  }>;
3657
+ /** Sets `zIndex: "initial"`. */
2874
3658
  get zInitial(): CssBuilder<T & {
2875
3659
  zIndex: import("csstype").Property.ZIndex | undefined;
2876
3660
  }>;
3661
+ /** Sets `zIndex: "unset"`. */
2877
3662
  get zUnset(): CssBuilder<T & {
2878
3663
  zIndex: import("csstype").Property.ZIndex | undefined;
2879
3664
  }>;
3665
+ /** Sets `zIndex: value`. */
2880
3666
  z(value: Properties["zIndex"]): CssBuilder<T & {
2881
3667
  zIndex: import("csstype").Property.ZIndex | undefined;
2882
3668
  }>;
3669
+ /** Sets `fontFamily: "'Inter', sans-serif"`. */
2883
3670
  get sansSerif(): CssBuilder<T & {
2884
3671
  fontFamily: import("csstype").Property.FontFamily | undefined;
2885
3672
  }>;
3673
+ /** Sets `fontFamily: value`. */
2886
3674
  fontFamily(value: Properties["fontFamily"]): CssBuilder<T & {
2887
3675
  fontFamily: import("csstype").Property.FontFamily | undefined;
2888
3676
  }>;
3677
+ /** Sets `transition: "background-color 200ms, border-color 200ms, box-shadow 200ms, left 200ms, right 200ms, margin 200ms"`. */
2889
3678
  get transition(): CssBuilder<T & {
2890
- transition: import("csstype").Property.Transition<string & {}> | undefined;
3679
+ transition: import("csstype").Property.Transition<string> | undefined;
2891
3680
  }>;
3681
+ /** Sets `fontWeight: 500; fontSize: "14px"; lineHeight: "20px"; outline: 0; borderRadius: "4px"; display: "inline-flex"; alignItems: "center"; whiteSpace: "nowrap"; transition: "background-color 200ms, border-color 200ms, box-shadow 200ms, left 200ms, right 200ms, margin 200ms"`. */
2892
3682
  get buttonBase(): CssBuilder<T & {
2893
3683
  fontWeight: import("csstype").Property.FontWeight | undefined;
2894
3684
  } & {
2895
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3685
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2896
3686
  } & {
2897
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3687
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2898
3688
  } & {
2899
- outline: import("csstype").Property.Outline<0 | (string & {})> | undefined;
3689
+ outline: import("csstype").Property.Outline<string | 0> | undefined;
2900
3690
  } & {
2901
- borderRadius: import("csstype").Property.BorderRadius<0 | (string & {})> | undefined;
3691
+ borderRadius: import("csstype").Property.BorderRadius<string | 0> | undefined;
2902
3692
  } & {
2903
3693
  display: import("csstype").Property.Display | undefined;
2904
3694
  } & {
@@ -2906,25 +3696,27 @@ declare class CssBuilder<T extends Properties1> {
2906
3696
  } & {
2907
3697
  whiteSpace: import("csstype").Property.WhiteSpace | undefined;
2908
3698
  } & {
2909
- transition: import("csstype").Property.Transition<string & {}> | undefined;
3699
+ transition: import("csstype").Property.Transition<string> | undefined;
2910
3700
  }>;
3701
+ /** Sets `padding: 0; margin: 0; listStyle: "none"`. */
2911
3702
  get listReset(): CssBuilder<T & {
2912
- padding: import("csstype").Property.Padding<0 | (string & {})> | undefined;
3703
+ padding: import("csstype").Property.Padding<string | 0> | undefined;
2913
3704
  } & {
2914
- margin: import("csstype").Property.Margin<0 | (string & {})> | undefined;
3705
+ margin: import("csstype").Property.Margin<string | 0> | undefined;
2915
3706
  } & {
2916
3707
  listStyle: import("csstype").Property.ListStyle | undefined;
2917
3708
  }>;
3709
+ /** Sets `position: "fixed"; top: 0; bottom: 0; left: 0; right: 0; display: "flex"; alignItems: "center"; justifyContent: "center"; backgroundColor: "rgba(36,36,36,0.2)"`. */
2918
3710
  get underlay(): CssBuilder<T & {
2919
3711
  position: import("csstype").Property.Position | undefined;
2920
3712
  } & {
2921
- top: import("csstype").Property.Top<0 | (string & {})> | undefined;
3713
+ top: import("csstype").Property.Top<string | 0> | undefined;
2922
3714
  } & {
2923
- bottom: import("csstype").Property.Bottom<0 | (string & {})> | undefined;
3715
+ bottom: import("csstype").Property.Bottom<string | 0> | undefined;
2924
3716
  } & {
2925
- left: import("csstype").Property.Left<0 | (string & {})> | undefined;
3717
+ left: import("csstype").Property.Left<string | 0> | undefined;
2926
3718
  } & {
2927
- right: import("csstype").Property.Right<0 | (string & {})> | undefined;
3719
+ right: import("csstype").Property.Right<string | 0> | undefined;
2928
3720
  } & {
2929
3721
  display: import("csstype").Property.Display | undefined;
2930
3722
  } & {
@@ -2934,11 +3726,22 @@ declare class CssBuilder<T extends Properties1> {
2934
3726
  } & {
2935
3727
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2936
3728
  }>;
3729
+ /** Sets `content: "''"`. */
2937
3730
  get contentEmpty(): CssBuilder<T & {
2938
3731
  content: import("csstype").Property.Content | undefined;
2939
3732
  }>;
2940
3733
  get $(): T;
2941
- if(t: boolean | Breakpoint): CssBuilder<T>;
3734
+ if(bp: Breakpoint): CssBuilder<T>;
3735
+ if(cond: boolean): CssBuilder<T>;
3736
+ get onHover(): CssBuilder<T>;
3737
+ get ifPrint(): CssBuilder<T>;
3738
+ get ifSm(): CssBuilder<T>;
3739
+ get ifMd(): CssBuilder<T>;
3740
+ get ifSmOrMd(): CssBuilder<T>;
3741
+ get ifMdAndUp(): CssBuilder<T>;
3742
+ get ifMdAndDown(): CssBuilder<T>;
3743
+ get ifLg(): CssBuilder<T>;
3744
+ get ifMdOrLg(): CssBuilder<T>;
2942
3745
  get else(): CssBuilder<T>;
2943
3746
  get important(): CssBuilder<T>;
2944
3747
  /** Adds new properties, either a specific key/value or a Properties object, to the current css. */
@@ -3029,11 +3832,7 @@ export declare const Css: CssBuilder<{}>;
3029
3832
  export declare type Margin = "margin" | "marginTop" | "marginRight" | "marginBottom" | "marginLeft";
3030
3833
  export declare type Padding = "padding" | "paddingTop" | "paddingRight" | "paddingBottom" | "paddingLeft";
3031
3834
  export declare type Font = "fontSize" | "fontWeight" | "lineHeight";
3032
- declare type Brand<K, T> = K & {
3033
- __brand: T;
3034
- };
3035
- declare type Breakpoint = Brand<string, "Breakpoint">;
3036
- export declare type BreakpointKey = "print" | "sm" | "md" | "smOrMd" | "mdAndUp" | "mdAndDown" | "lg" | "mdOrLg";
3835
+ export declare type Breakpoint = "print" | "sm" | "md" | "smOrMd" | "mdAndUp" | "mdAndDown" | "lg" | "mdOrLg";
3037
3836
  export declare enum Breakpoints {
3038
3837
  print = "@media print",
3039
3838
  sm = "@media screen and (max-width:599px)",
@@ -3044,12 +3843,4 @@ export declare enum Breakpoints {
3044
3843
  lg = "@media screen and (min-width:1025px)",
3045
3844
  mdOrLg = "@media screen and (min-width:600px)"
3046
3845
  }
3047
- export declare const print: Breakpoint;
3048
- export declare const sm: Breakpoint;
3049
- export declare const md: Breakpoint;
3050
- export declare const smOrMd: Breakpoint;
3051
- export declare const mdAndUp: Breakpoint;
3052
- export declare const mdAndDown: Breakpoint;
3053
- export declare const lg: Breakpoint;
3054
- export declare const mdOrLg: Breakpoint;
3055
3846
  export {};