@homebound/beam 2.217.1 → 2.218.1

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,3412 @@ 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; WebkitBoxOrient: "vertical"; 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;
1244
+ } & {
1245
+ WebkitBoxOrient: import("csstype").Property.BoxOrient | undefined;
940
1246
  } & {
941
1247
  textOverflow: import("csstype").Property.TextOverflow | undefined;
942
1248
  }>;
1249
+ /** Sets `overflow: "hidden"; display: "-webkit-box"; WebkitLineClamp: 2; WebkitBoxOrient: "vertical"; textOverflow: "ellipsis"`. */
943
1250
  get lineClamp2(): CssBuilder<T & {
944
1251
  overflow: import("csstype").Property.Overflow | undefined;
945
1252
  } & {
946
1253
  display: import("csstype").Property.Display | undefined;
947
- } & {
948
- WebkitBoxOrient: import("csstype").Property.BoxOrient | undefined;
949
1254
  } & {
950
1255
  WebkitLineClamp: import("csstype").Property.WebkitLineClamp | undefined;
1256
+ } & {
1257
+ WebkitBoxOrient: import("csstype").Property.BoxOrient | undefined;
951
1258
  } & {
952
1259
  textOverflow: import("csstype").Property.TextOverflow | undefined;
953
1260
  }>;
1261
+ /** Sets `overflow: "hidden"; display: "-webkit-box"; WebkitLineClamp: 3; WebkitBoxOrient: "vertical"; textOverflow: "ellipsis"`. */
954
1262
  get lineClamp3(): CssBuilder<T & {
955
1263
  overflow: import("csstype").Property.Overflow | undefined;
956
1264
  } & {
957
1265
  display: import("csstype").Property.Display | undefined;
958
- } & {
959
- WebkitBoxOrient: import("csstype").Property.BoxOrient | undefined;
960
1266
  } & {
961
1267
  WebkitLineClamp: import("csstype").Property.WebkitLineClamp | undefined;
1268
+ } & {
1269
+ WebkitBoxOrient: import("csstype").Property.BoxOrient | undefined;
962
1270
  } & {
963
1271
  textOverflow: import("csstype").Property.TextOverflow | undefined;
964
1272
  }>;
1273
+ /** Sets `overflow: "hidden"; display: "-webkit-box"; WebkitLineClamp: 4; WebkitBoxOrient: "vertical"; textOverflow: "ellipsis"`. */
965
1274
  get lineClamp4(): CssBuilder<T & {
966
1275
  overflow: import("csstype").Property.Overflow | undefined;
967
1276
  } & {
968
1277
  display: import("csstype").Property.Display | undefined;
969
- } & {
970
- WebkitBoxOrient: import("csstype").Property.BoxOrient | undefined;
971
1278
  } & {
972
1279
  WebkitLineClamp: import("csstype").Property.WebkitLineClamp | undefined;
1280
+ } & {
1281
+ WebkitBoxOrient: import("csstype").Property.BoxOrient | undefined;
973
1282
  } & {
974
1283
  textOverflow: import("csstype").Property.TextOverflow | undefined;
975
1284
  }>;
1285
+ /** Sets `overflow: "hidden"; display: "-webkit-box"; WebkitLineClamp: 5; WebkitBoxOrient: "vertical"; textOverflow: "ellipsis"`. */
976
1286
  get lineClamp5(): CssBuilder<T & {
977
1287
  overflow: import("csstype").Property.Overflow | undefined;
978
1288
  } & {
979
1289
  display: import("csstype").Property.Display | undefined;
980
- } & {
981
- WebkitBoxOrient: import("csstype").Property.BoxOrient | undefined;
982
1290
  } & {
983
1291
  WebkitLineClamp: import("csstype").Property.WebkitLineClamp | undefined;
1292
+ } & {
1293
+ WebkitBoxOrient: import("csstype").Property.BoxOrient | undefined;
984
1294
  } & {
985
1295
  textOverflow: import("csstype").Property.TextOverflow | undefined;
986
1296
  }>;
1297
+ /** Sets `overflow: "hidden"; display: "-webkit-box"; WebkitLineClamp: 6; WebkitBoxOrient: "vertical"; textOverflow: "ellipsis"`. */
987
1298
  get lineClamp6(): CssBuilder<T & {
988
1299
  overflow: import("csstype").Property.Overflow | undefined;
989
1300
  } & {
990
1301
  display: import("csstype").Property.Display | undefined;
991
- } & {
992
- WebkitBoxOrient: import("csstype").Property.BoxOrient | undefined;
993
1302
  } & {
994
1303
  WebkitLineClamp: import("csstype").Property.WebkitLineClamp | undefined;
1304
+ } & {
1305
+ WebkitBoxOrient: import("csstype").Property.BoxOrient | undefined;
995
1306
  } & {
996
1307
  textOverflow: import("csstype").Property.TextOverflow | undefined;
997
1308
  }>;
1309
+ /** Sets `WebkitLineClamp: "unset"`. */
998
1310
  get lineClampNone(): CssBuilder<T & {
999
1311
  WebkitLineClamp: import("csstype").Property.WebkitLineClamp | undefined;
1000
1312
  }>;
1313
+ /** Sets `objectFit: "contain"`. */
1001
1314
  get objectContain(): CssBuilder<T & {
1002
1315
  objectFit: import("csstype").Property.ObjectFit | undefined;
1003
1316
  }>;
1317
+ /** Sets `objectFit: "cover"`. */
1004
1318
  get objectCover(): CssBuilder<T & {
1005
1319
  objectFit: import("csstype").Property.ObjectFit | undefined;
1006
1320
  }>;
1321
+ /** Sets `objectFit: "fill"`. */
1007
1322
  get objectFill(): CssBuilder<T & {
1008
1323
  objectFit: import("csstype").Property.ObjectFit | undefined;
1009
1324
  }>;
1325
+ /** Sets `objectFit: "none"`. */
1010
1326
  get objectNone(): CssBuilder<T & {
1011
1327
  objectFit: import("csstype").Property.ObjectFit | undefined;
1012
1328
  }>;
1329
+ /** Sets `objectFit: "scale-down"`. */
1013
1330
  get objectScaleDown(): CssBuilder<T & {
1014
1331
  objectFit: import("csstype").Property.ObjectFit | undefined;
1015
1332
  }>;
1333
+ /** Sets `objectFit: value`. */
1016
1334
  objectFit(value: Properties["objectFit"]): CssBuilder<T & {
1017
1335
  objectFit: import("csstype").Property.ObjectFit | undefined;
1018
1336
  }>;
1337
+ /** Sets `outline: "1px solid"`. */
1019
1338
  get outline1(): CssBuilder<T & {
1020
- outline: import("csstype").Property.Outline<0 | (string & {})> | undefined;
1339
+ outline: import("csstype").Property.Outline<string | 0> | undefined;
1021
1340
  }>;
1341
+ /** Sets `outline: "1px solid transparent"`. */
1022
1342
  get outlineTransparent(): CssBuilder<T & {
1023
- outline: import("csstype").Property.Outline<0 | (string & {})> | undefined;
1343
+ outline: import("csstype").Property.Outline<string | 0> | undefined;
1024
1344
  }>;
1345
+ /** Sets `outline: "0"`. */
1025
1346
  get outline0(): CssBuilder<T & {
1026
- outline: import("csstype").Property.Outline<0 | (string & {})> | undefined;
1347
+ outline: import("csstype").Property.Outline<string | 0> | undefined;
1027
1348
  }>;
1349
+ /** Sets `outline: value`. */
1028
1350
  outline(value: Properties["outline"]): CssBuilder<T & {
1029
- outline: import("csstype").Property.Outline<0 | (string & {})> | undefined;
1351
+ outline: import("csstype").Property.Outline<string | 0> | undefined;
1030
1352
  }>;
1353
+ /** Sets `overflow: "visible"`. */
1031
1354
  get overflowVisible(): CssBuilder<T & {
1032
1355
  overflow: import("csstype").Property.Overflow | undefined;
1033
1356
  }>;
1357
+ /** Sets `overflow: "hidden"`. */
1034
1358
  get overflowHidden(): CssBuilder<T & {
1035
1359
  overflow: import("csstype").Property.Overflow | undefined;
1036
1360
  }>;
1361
+ /** Sets `overflow: "scroll"`. */
1037
1362
  get overflowScroll(): CssBuilder<T & {
1038
1363
  overflow: import("csstype").Property.Overflow | undefined;
1039
1364
  }>;
1365
+ /** Sets `overflow: "auto"`. */
1040
1366
  get overflowAuto(): CssBuilder<T & {
1041
1367
  overflow: import("csstype").Property.Overflow | undefined;
1042
1368
  }>;
1369
+ /** Sets `overflow: value`. */
1043
1370
  overflow(value: Properties["overflow"]): CssBuilder<T & {
1044
1371
  overflow: import("csstype").Property.Overflow | undefined;
1045
1372
  }>;
1373
+ /** Sets `overflowY: "visible"`. */
1046
1374
  get overflowYVisible(): CssBuilder<T & {
1047
1375
  overflowY: import("csstype").Property.OverflowY | undefined;
1048
1376
  }>;
1377
+ /** Sets `overflowY: "hidden"`. */
1049
1378
  get overflowYHidden(): CssBuilder<T & {
1050
1379
  overflowY: import("csstype").Property.OverflowY | undefined;
1051
1380
  }>;
1381
+ /** Sets `overflowY: "scroll"`. */
1052
1382
  get overflowYScroll(): CssBuilder<T & {
1053
1383
  overflowY: import("csstype").Property.OverflowY | undefined;
1054
1384
  }>;
1385
+ /** Sets `overflowY: "auto"`. */
1055
1386
  get overflowYAuto(): CssBuilder<T & {
1056
1387
  overflowY: import("csstype").Property.OverflowY | undefined;
1057
1388
  }>;
1389
+ /** Sets `overflowY: value`. */
1058
1390
  overflowY(value: Properties["overflowY"]): CssBuilder<T & {
1059
1391
  overflowY: import("csstype").Property.OverflowY | undefined;
1060
1392
  }>;
1393
+ /** Sets `overflowX: "visible"`. */
1061
1394
  get overflowXVisible(): CssBuilder<T & {
1062
1395
  overflowX: import("csstype").Property.OverflowX | undefined;
1063
1396
  }>;
1397
+ /** Sets `overflowX: "hidden"`. */
1064
1398
  get overflowXHidden(): CssBuilder<T & {
1065
1399
  overflowX: import("csstype").Property.OverflowX | undefined;
1066
1400
  }>;
1401
+ /** Sets `overflowX: "scroll"`. */
1067
1402
  get overflowXScroll(): CssBuilder<T & {
1068
1403
  overflowX: import("csstype").Property.OverflowX | undefined;
1069
1404
  }>;
1405
+ /** Sets `overflowX: "auto"`. */
1070
1406
  get overflowXAuto(): CssBuilder<T & {
1071
1407
  overflowX: import("csstype").Property.OverflowX | undefined;
1072
1408
  }>;
1409
+ /** Sets `overflowX: value`. */
1073
1410
  overflowX(value: Properties["overflowX"]): CssBuilder<T & {
1074
1411
  overflowX: import("csstype").Property.OverflowX | undefined;
1075
1412
  }>;
1413
+ /** Sets `position: "absolute"`. */
1076
1414
  get absolute(): CssBuilder<T & {
1077
1415
  position: import("csstype").Property.Position | undefined;
1078
1416
  }>;
1417
+ /** Sets `position: "fixed"`. */
1079
1418
  get fixed(): CssBuilder<T & {
1080
1419
  position: import("csstype").Property.Position | undefined;
1081
1420
  }>;
1421
+ /** Sets `position: "static"`. */
1082
1422
  get static(): CssBuilder<T & {
1083
1423
  position: import("csstype").Property.Position | undefined;
1084
1424
  }>;
1425
+ /** Sets `position: "relative"`. */
1085
1426
  get relative(): CssBuilder<T & {
1086
1427
  position: import("csstype").Property.Position | undefined;
1087
1428
  }>;
1429
+ /** Sets `position: "sticky"`. */
1088
1430
  get sticky(): CssBuilder<T & {
1089
1431
  position: import("csstype").Property.Position | undefined;
1090
1432
  }>;
1433
+ /** Sets `position: value`. */
1091
1434
  position(value: Properties["position"]): CssBuilder<T & {
1092
1435
  position: import("csstype").Property.Position | undefined;
1093
1436
  }>;
1437
+ /** Sets `color: "rgba(254,254,254,1)"`. */
1094
1438
  get white(): CssBuilder<T & {
1095
1439
  color: import("csstype").Property.Color | undefined;
1096
1440
  }>;
1441
+ /** Sets `color: "rgba(0,0,0,0)"`. */
1097
1442
  get transparent(): CssBuilder<T & {
1098
1443
  color: import("csstype").Property.Color | undefined;
1099
1444
  }>;
1445
+ /** Sets `color: "rgba(255,253,253,1)"`. */
1100
1446
  get gray50(): CssBuilder<T & {
1101
1447
  color: import("csstype").Property.Color | undefined;
1102
1448
  }>;
1449
+ /** Sets `color: "rgba(247,245,245,1)"`. */
1103
1450
  get gray100(): CssBuilder<T & {
1104
1451
  color: import("csstype").Property.Color | undefined;
1105
1452
  }>;
1453
+ /** Sets `color: "rgba(236,235,235,1)"`. */
1106
1454
  get gray200(): CssBuilder<T & {
1107
1455
  color: import("csstype").Property.Color | undefined;
1108
1456
  }>;
1457
+ /** Sets `color: "rgba(221,220,220,1)"`. */
1109
1458
  get gray300(): CssBuilder<T & {
1110
1459
  color: import("csstype").Property.Color | undefined;
1111
1460
  }>;
1461
+ /** Sets `color: "rgba(201,201,201,1)"`. */
1112
1462
  get gray400(): CssBuilder<T & {
1113
1463
  color: import("csstype").Property.Color | undefined;
1114
1464
  }>;
1465
+ /** Sets `color: "rgba(175,175,175,1)"`. */
1115
1466
  get gray500(): CssBuilder<T & {
1116
1467
  color: import("csstype").Property.Color | undefined;
1117
1468
  }>;
1469
+ /** Sets `color: "rgba(141,141,141,1)"`. */
1118
1470
  get gray600(): CssBuilder<T & {
1119
1471
  color: import("csstype").Property.Color | undefined;
1120
1472
  }>;
1473
+ /** Sets `color: "rgba(100,100,100,1)"`. */
1121
1474
  get gray700(): CssBuilder<T & {
1122
1475
  color: import("csstype").Property.Color | undefined;
1123
1476
  }>;
1477
+ /** Sets `color: "rgba(53,53,53,1)"`. */
1124
1478
  get gray800(): CssBuilder<T & {
1125
1479
  color: import("csstype").Property.Color | undefined;
1126
1480
  }>;
1481
+ /** Sets `color: "rgba(36,36,36,1)"`. */
1127
1482
  get gray900(): CssBuilder<T & {
1128
1483
  color: import("csstype").Property.Color | undefined;
1129
1484
  }>;
1485
+ /** Sets `color: "rgba(240,249,255,1)"`. */
1130
1486
  get lightBlue50(): CssBuilder<T & {
1131
1487
  color: import("csstype").Property.Color | undefined;
1132
1488
  }>;
1489
+ /** Sets `color: "rgba(224,242,254,1)"`. */
1133
1490
  get lightBlue100(): CssBuilder<T & {
1134
1491
  color: import("csstype").Property.Color | undefined;
1135
1492
  }>;
1493
+ /** Sets `color: "rgba(186,230,253,1)"`. */
1136
1494
  get lightBlue200(): CssBuilder<T & {
1137
1495
  color: import("csstype").Property.Color | undefined;
1138
1496
  }>;
1497
+ /** Sets `color: "rgba(125,211,252,1)"`. */
1139
1498
  get lightBlue300(): CssBuilder<T & {
1140
1499
  color: import("csstype").Property.Color | undefined;
1141
1500
  }>;
1501
+ /** Sets `color: "rgba(56,189,248,1)"`. */
1142
1502
  get lightBlue400(): CssBuilder<T & {
1143
1503
  color: import("csstype").Property.Color | undefined;
1144
1504
  }>;
1505
+ /** Sets `color: "rgba(14,165,233,1)"`. */
1145
1506
  get lightBlue500(): CssBuilder<T & {
1146
1507
  color: import("csstype").Property.Color | undefined;
1147
1508
  }>;
1509
+ /** Sets `color: "rgba(2,143,199,1)"`. */
1148
1510
  get lightBlue600(): CssBuilder<T & {
1149
1511
  color: import("csstype").Property.Color | undefined;
1150
1512
  }>;
1513
+ /** Sets `color: "rgba(3,105,161,1)"`. */
1151
1514
  get lightBlue700(): CssBuilder<T & {
1152
1515
  color: import("csstype").Property.Color | undefined;
1153
1516
  }>;
1517
+ /** Sets `color: "rgba(7,89,133,1)"`. */
1154
1518
  get lightBlue800(): CssBuilder<T & {
1155
1519
  color: import("csstype").Property.Color | undefined;
1156
1520
  }>;
1521
+ /** Sets `color: "rgba(12,74,110,1)"`. */
1157
1522
  get lightBlue900(): CssBuilder<T & {
1158
1523
  color: import("csstype").Property.Color | undefined;
1159
1524
  }>;
1525
+ /** Sets `color: "rgba(255,242,242,1)"`. */
1160
1526
  get red50(): CssBuilder<T & {
1161
1527
  color: import("csstype").Property.Color | undefined;
1162
1528
  }>;
1529
+ /** Sets `color: "rgba(253,210,209,1)"`. */
1163
1530
  get red100(): CssBuilder<T & {
1164
1531
  color: import("csstype").Property.Color | undefined;
1165
1532
  }>;
1533
+ /** Sets `color: "rgba(249,181,177,1)"`. */
1166
1534
  get red200(): CssBuilder<T & {
1167
1535
  color: import("csstype").Property.Color | undefined;
1168
1536
  }>;
1537
+ /** Sets `color: "rgba(242,155,148,1)"`. */
1169
1538
  get red300(): CssBuilder<T & {
1170
1539
  color: import("csstype").Property.Color | undefined;
1171
1540
  }>;
1541
+ /** Sets `color: "rgba(232,133,122,1)"`. */
1172
1542
  get red400(): CssBuilder<T & {
1173
1543
  color: import("csstype").Property.Color | undefined;
1174
1544
  }>;
1545
+ /** Sets `color: "rgba(218,114,100,1)"`. */
1175
1546
  get red500(): CssBuilder<T & {
1176
1547
  color: import("csstype").Property.Color | undefined;
1177
1548
  }>;
1549
+ /** Sets `color: "rgba(200,98,81,1)"`. */
1178
1550
  get red600(): CssBuilder<T & {
1179
1551
  color: import("csstype").Property.Color | undefined;
1180
1552
  }>;
1553
+ /** Sets `color: "rgba(176,83,73,1)"`. */
1181
1554
  get red700(): CssBuilder<T & {
1182
1555
  color: import("csstype").Property.Color | undefined;
1183
1556
  }>;
1557
+ /** Sets `color: "rgba(149,68,64,1)"`. */
1184
1558
  get red800(): CssBuilder<T & {
1185
1559
  color: import("csstype").Property.Color | undefined;
1186
1560
  }>;
1561
+ /** Sets `color: "rgba(120,54,54,1)"`. */
1187
1562
  get red900(): CssBuilder<T & {
1188
1563
  color: import("csstype").Property.Color | undefined;
1189
1564
  }>;
1565
+ /** Sets `color: "rgba(255,254,242,1)"`. */
1190
1566
  get yellow50(): CssBuilder<T & {
1191
1567
  color: import("csstype").Property.Color | undefined;
1192
1568
  }>;
1569
+ /** Sets `color: "rgba(255,254,212,1)"`. */
1193
1570
  get yellow100(): CssBuilder<T & {
1194
1571
  color: import("csstype").Property.Color | undefined;
1195
1572
  }>;
1573
+ /** Sets `color: "rgba(255,250,180,1)"`. */
1196
1574
  get yellow200(): CssBuilder<T & {
1197
1575
  color: import("csstype").Property.Color | undefined;
1198
1576
  }>;
1577
+ /** Sets `color: "rgba(255,240,150,1)"`. */
1199
1578
  get yellow300(): CssBuilder<T & {
1200
1579
  color: import("csstype").Property.Color | undefined;
1201
1580
  }>;
1581
+ /** Sets `color: "rgba(255,225,123,1)"`. */
1202
1582
  get yellow400(): CssBuilder<T & {
1203
1583
  color: import("csstype").Property.Color | undefined;
1204
1584
  }>;
1585
+ /** Sets `color: "rgba(255,204,99,1)"`. */
1205
1586
  get yellow500(): CssBuilder<T & {
1206
1587
  color: import("csstype").Property.Color | undefined;
1207
1588
  }>;
1589
+ /** Sets `color: "rgba(246,177,78,1)"`. */
1208
1590
  get yellow600(): CssBuilder<T & {
1209
1591
  color: import("csstype").Property.Color | undefined;
1210
1592
  }>;
1593
+ /** Sets `color: "rgba(207,150,73,1)"`. */
1211
1594
  get yellow700(): CssBuilder<T & {
1212
1595
  color: import("csstype").Property.Color | undefined;
1213
1596
  }>;
1597
+ /** Sets `color: "rgba(164,120,66,1)"`. */
1214
1598
  get yellow800(): CssBuilder<T & {
1215
1599
  color: import("csstype").Property.Color | undefined;
1216
1600
  }>;
1601
+ /** Sets `color: "rgba(120,89,54,1)"`. */
1217
1602
  get yellow900(): CssBuilder<T & {
1218
1603
  color: import("csstype").Property.Color | undefined;
1219
1604
  }>;
1605
+ /** Sets `color: "rgba(250,255,250,1)"`. */
1220
1606
  get green50(): CssBuilder<T & {
1221
1607
  color: import("csstype").Property.Color | undefined;
1222
1608
  }>;
1609
+ /** Sets `color: "rgba(223,248,216,1)"`. */
1223
1610
  get green100(): CssBuilder<T & {
1224
1611
  color: import("csstype").Property.Color | undefined;
1225
1612
  }>;
1613
+ /** Sets `color: "rgba(199,239,183,1)"`. */
1226
1614
  get green200(): CssBuilder<T & {
1227
1615
  color: import("csstype").Property.Color | undefined;
1228
1616
  }>;
1617
+ /** Sets `color: "rgba(179,226,153,1)"`. */
1229
1618
  get green300(): CssBuilder<T & {
1230
1619
  color: import("csstype").Property.Color | undefined;
1231
1620
  }>;
1621
+ /** Sets `color: "rgba(163,208,126,1)"`. */
1232
1622
  get green400(): CssBuilder<T & {
1233
1623
  color: import("csstype").Property.Color | undefined;
1234
1624
  }>;
1625
+ /** Sets `color: "rgba(146,185,101,1)"`. */
1235
1626
  get green500(): CssBuilder<T & {
1236
1627
  color: import("csstype").Property.Color | undefined;
1237
1628
  }>;
1629
+ /** Sets `color: "rgba(126,156,79,1)"`. */
1238
1630
  get green600(): CssBuilder<T & {
1239
1631
  color: import("csstype").Property.Color | undefined;
1240
1632
  }>;
1633
+ /** Sets `color: "rgba(101,120,57,1)"`. */
1241
1634
  get green700(): CssBuilder<T & {
1242
1635
  color: import("csstype").Property.Color | undefined;
1243
1636
  }>;
1637
+ /** Sets `color: "rgba(64,93,44,1)"`. */
1244
1638
  get green800(): CssBuilder<T & {
1245
1639
  color: import("csstype").Property.Color | undefined;
1246
1640
  }>;
1641
+ /** Sets `color: "rgba(34,64,31,1)"`. */
1247
1642
  get green900(): CssBuilder<T & {
1248
1643
  color: import("csstype").Property.Color | undefined;
1249
1644
  }>;
1645
+ /** Sets `color: "rgba(245,243,255,1)"`. */
1250
1646
  get violet50(): CssBuilder<T & {
1251
1647
  color: import("csstype").Property.Color | undefined;
1252
1648
  }>;
1649
+ /** Sets `color: "rgba(238,234,253,1)"`. */
1253
1650
  get violet100(): CssBuilder<T & {
1254
1651
  color: import("csstype").Property.Color | undefined;
1255
1652
  }>;
1653
+ /** Sets `color: "rgba(232,225,252,1)"`. */
1256
1654
  get violet200(): CssBuilder<T & {
1257
1655
  color: import("csstype").Property.Color | undefined;
1258
1656
  }>;
1657
+ /** Sets `color: "rgba(218,205,246,1)"`. */
1259
1658
  get violet300(): CssBuilder<T & {
1260
1659
  color: import("csstype").Property.Color | undefined;
1261
1660
  }>;
1661
+ /** Sets `color: "rgba(204,186,236,1)"`. */
1262
1662
  get violet400(): CssBuilder<T & {
1263
1663
  color: import("csstype").Property.Color | undefined;
1264
1664
  }>;
1665
+ /** Sets `color: "rgba(190,167,223,1)"`. */
1265
1666
  get violet500(): CssBuilder<T & {
1266
1667
  color: import("csstype").Property.Color | undefined;
1267
1668
  }>;
1669
+ /** Sets `color: "rgba(173,147,205,1)"`. */
1268
1670
  get violet600(): CssBuilder<T & {
1269
1671
  color: import("csstype").Property.Color | undefined;
1270
1672
  }>;
1673
+ /** Sets `color: "rgba(153,126,181,1)"`. */
1271
1674
  get violet700(): CssBuilder<T & {
1272
1675
  color: import("csstype").Property.Color | undefined;
1273
1676
  }>;
1677
+ /** Sets `color: "rgba(128,103,151,1)"`. */
1274
1678
  get violet800(): CssBuilder<T & {
1275
1679
  color: import("csstype").Property.Color | undefined;
1276
1680
  }>;
1681
+ /** Sets `color: "rgba(100,78,116,1)"`. */
1277
1682
  get violet900(): CssBuilder<T & {
1278
1683
  color: import("csstype").Property.Color | undefined;
1279
1684
  }>;
1685
+ /** Sets `color: value`. */
1280
1686
  color(value: Properties["color"]): CssBuilder<T & {
1281
1687
  color: import("csstype").Property.Color | undefined;
1282
1688
  }>;
1689
+ /** Sets `backgroundColor: "rgba(254,254,254,1)"`. */
1283
1690
  get bgWhite(): CssBuilder<T & {
1284
1691
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1285
1692
  }>;
1693
+ /** Sets `backgroundColor: "rgba(0,0,0,0)"`. */
1286
1694
  get bgTransparent(): CssBuilder<T & {
1287
1695
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1288
1696
  }>;
1697
+ /** Sets `backgroundColor: "rgba(255,253,253,1)"`. */
1289
1698
  get bgGray50(): CssBuilder<T & {
1290
1699
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1291
1700
  }>;
1701
+ /** Sets `backgroundColor: "rgba(247,245,245,1)"`. */
1292
1702
  get bgGray100(): CssBuilder<T & {
1293
1703
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1294
1704
  }>;
1705
+ /** Sets `backgroundColor: "rgba(236,235,235,1)"`. */
1295
1706
  get bgGray200(): CssBuilder<T & {
1296
1707
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1297
1708
  }>;
1709
+ /** Sets `backgroundColor: "rgba(221,220,220,1)"`. */
1298
1710
  get bgGray300(): CssBuilder<T & {
1299
1711
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1300
1712
  }>;
1713
+ /** Sets `backgroundColor: "rgba(201,201,201,1)"`. */
1301
1714
  get bgGray400(): CssBuilder<T & {
1302
1715
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1303
1716
  }>;
1717
+ /** Sets `backgroundColor: "rgba(175,175,175,1)"`. */
1304
1718
  get bgGray500(): CssBuilder<T & {
1305
1719
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1306
1720
  }>;
1721
+ /** Sets `backgroundColor: "rgba(141,141,141,1)"`. */
1307
1722
  get bgGray600(): CssBuilder<T & {
1308
1723
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1309
1724
  }>;
1725
+ /** Sets `backgroundColor: "rgba(100,100,100,1)"`. */
1310
1726
  get bgGray700(): CssBuilder<T & {
1311
1727
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1312
1728
  }>;
1729
+ /** Sets `backgroundColor: "rgba(53,53,53,1)"`. */
1313
1730
  get bgGray800(): CssBuilder<T & {
1314
1731
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1315
1732
  }>;
1733
+ /** Sets `backgroundColor: "rgba(36,36,36,1)"`. */
1316
1734
  get bgGray900(): CssBuilder<T & {
1317
1735
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1318
1736
  }>;
1737
+ /** Sets `backgroundColor: "rgba(240,249,255,1)"`. */
1319
1738
  get bgLightBlue50(): CssBuilder<T & {
1320
1739
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1321
1740
  }>;
1741
+ /** Sets `backgroundColor: "rgba(224,242,254,1)"`. */
1322
1742
  get bgLightBlue100(): CssBuilder<T & {
1323
1743
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1324
1744
  }>;
1745
+ /** Sets `backgroundColor: "rgba(186,230,253,1)"`. */
1325
1746
  get bgLightBlue200(): CssBuilder<T & {
1326
1747
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1327
1748
  }>;
1749
+ /** Sets `backgroundColor: "rgba(125,211,252,1)"`. */
1328
1750
  get bgLightBlue300(): CssBuilder<T & {
1329
1751
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1330
1752
  }>;
1753
+ /** Sets `backgroundColor: "rgba(56,189,248,1)"`. */
1331
1754
  get bgLightBlue400(): CssBuilder<T & {
1332
1755
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1333
1756
  }>;
1757
+ /** Sets `backgroundColor: "rgba(14,165,233,1)"`. */
1334
1758
  get bgLightBlue500(): CssBuilder<T & {
1335
1759
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1336
1760
  }>;
1761
+ /** Sets `backgroundColor: "rgba(2,143,199,1)"`. */
1337
1762
  get bgLightBlue600(): CssBuilder<T & {
1338
1763
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1339
1764
  }>;
1765
+ /** Sets `backgroundColor: "rgba(3,105,161,1)"`. */
1340
1766
  get bgLightBlue700(): CssBuilder<T & {
1341
1767
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1342
1768
  }>;
1769
+ /** Sets `backgroundColor: "rgba(7,89,133,1)"`. */
1343
1770
  get bgLightBlue800(): CssBuilder<T & {
1344
1771
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1345
1772
  }>;
1773
+ /** Sets `backgroundColor: "rgba(12,74,110,1)"`. */
1346
1774
  get bgLightBlue900(): CssBuilder<T & {
1347
1775
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1348
1776
  }>;
1777
+ /** Sets `backgroundColor: "rgba(255,242,242,1)"`. */
1349
1778
  get bgRed50(): CssBuilder<T & {
1350
1779
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1351
1780
  }>;
1781
+ /** Sets `backgroundColor: "rgba(253,210,209,1)"`. */
1352
1782
  get bgRed100(): CssBuilder<T & {
1353
1783
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1354
1784
  }>;
1785
+ /** Sets `backgroundColor: "rgba(249,181,177,1)"`. */
1355
1786
  get bgRed200(): CssBuilder<T & {
1356
1787
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1357
1788
  }>;
1789
+ /** Sets `backgroundColor: "rgba(242,155,148,1)"`. */
1358
1790
  get bgRed300(): CssBuilder<T & {
1359
1791
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1360
1792
  }>;
1793
+ /** Sets `backgroundColor: "rgba(232,133,122,1)"`. */
1361
1794
  get bgRed400(): CssBuilder<T & {
1362
1795
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1363
1796
  }>;
1797
+ /** Sets `backgroundColor: "rgba(218,114,100,1)"`. */
1364
1798
  get bgRed500(): CssBuilder<T & {
1365
1799
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1366
1800
  }>;
1801
+ /** Sets `backgroundColor: "rgba(200,98,81,1)"`. */
1367
1802
  get bgRed600(): CssBuilder<T & {
1368
1803
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1369
1804
  }>;
1805
+ /** Sets `backgroundColor: "rgba(176,83,73,1)"`. */
1370
1806
  get bgRed700(): CssBuilder<T & {
1371
1807
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1372
1808
  }>;
1809
+ /** Sets `backgroundColor: "rgba(149,68,64,1)"`. */
1373
1810
  get bgRed800(): CssBuilder<T & {
1374
1811
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1375
1812
  }>;
1813
+ /** Sets `backgroundColor: "rgba(120,54,54,1)"`. */
1376
1814
  get bgRed900(): CssBuilder<T & {
1377
1815
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1378
1816
  }>;
1817
+ /** Sets `backgroundColor: "rgba(255,254,242,1)"`. */
1379
1818
  get bgYellow50(): CssBuilder<T & {
1380
1819
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1381
1820
  }>;
1821
+ /** Sets `backgroundColor: "rgba(255,254,212,1)"`. */
1382
1822
  get bgYellow100(): CssBuilder<T & {
1383
1823
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1384
1824
  }>;
1825
+ /** Sets `backgroundColor: "rgba(255,250,180,1)"`. */
1385
1826
  get bgYellow200(): CssBuilder<T & {
1386
1827
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1387
1828
  }>;
1829
+ /** Sets `backgroundColor: "rgba(255,240,150,1)"`. */
1388
1830
  get bgYellow300(): CssBuilder<T & {
1389
1831
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1390
1832
  }>;
1833
+ /** Sets `backgroundColor: "rgba(255,225,123,1)"`. */
1391
1834
  get bgYellow400(): CssBuilder<T & {
1392
1835
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1393
1836
  }>;
1837
+ /** Sets `backgroundColor: "rgba(255,204,99,1)"`. */
1394
1838
  get bgYellow500(): CssBuilder<T & {
1395
1839
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1396
1840
  }>;
1841
+ /** Sets `backgroundColor: "rgba(246,177,78,1)"`. */
1397
1842
  get bgYellow600(): CssBuilder<T & {
1398
1843
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1399
1844
  }>;
1845
+ /** Sets `backgroundColor: "rgba(207,150,73,1)"`. */
1400
1846
  get bgYellow700(): CssBuilder<T & {
1401
1847
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1402
1848
  }>;
1849
+ /** Sets `backgroundColor: "rgba(164,120,66,1)"`. */
1403
1850
  get bgYellow800(): CssBuilder<T & {
1404
1851
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1405
1852
  }>;
1853
+ /** Sets `backgroundColor: "rgba(120,89,54,1)"`. */
1406
1854
  get bgYellow900(): CssBuilder<T & {
1407
1855
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1408
1856
  }>;
1857
+ /** Sets `backgroundColor: "rgba(250,255,250,1)"`. */
1409
1858
  get bgGreen50(): CssBuilder<T & {
1410
1859
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1411
1860
  }>;
1861
+ /** Sets `backgroundColor: "rgba(223,248,216,1)"`. */
1412
1862
  get bgGreen100(): CssBuilder<T & {
1413
1863
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1414
1864
  }>;
1865
+ /** Sets `backgroundColor: "rgba(199,239,183,1)"`. */
1415
1866
  get bgGreen200(): CssBuilder<T & {
1416
1867
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1417
1868
  }>;
1869
+ /** Sets `backgroundColor: "rgba(179,226,153,1)"`. */
1418
1870
  get bgGreen300(): CssBuilder<T & {
1419
1871
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1420
1872
  }>;
1873
+ /** Sets `backgroundColor: "rgba(163,208,126,1)"`. */
1421
1874
  get bgGreen400(): CssBuilder<T & {
1422
1875
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1423
1876
  }>;
1877
+ /** Sets `backgroundColor: "rgba(146,185,101,1)"`. */
1424
1878
  get bgGreen500(): CssBuilder<T & {
1425
1879
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1426
1880
  }>;
1881
+ /** Sets `backgroundColor: "rgba(126,156,79,1)"`. */
1427
1882
  get bgGreen600(): CssBuilder<T & {
1428
1883
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1429
1884
  }>;
1885
+ /** Sets `backgroundColor: "rgba(101,120,57,1)"`. */
1430
1886
  get bgGreen700(): CssBuilder<T & {
1431
1887
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1432
1888
  }>;
1889
+ /** Sets `backgroundColor: "rgba(64,93,44,1)"`. */
1433
1890
  get bgGreen800(): CssBuilder<T & {
1434
1891
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1435
1892
  }>;
1893
+ /** Sets `backgroundColor: "rgba(34,64,31,1)"`. */
1436
1894
  get bgGreen900(): CssBuilder<T & {
1437
1895
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1438
1896
  }>;
1897
+ /** Sets `backgroundColor: "rgba(245,243,255,1)"`. */
1439
1898
  get bgViolet50(): CssBuilder<T & {
1440
1899
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1441
1900
  }>;
1901
+ /** Sets `backgroundColor: "rgba(238,234,253,1)"`. */
1442
1902
  get bgViolet100(): CssBuilder<T & {
1443
1903
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1444
1904
  }>;
1905
+ /** Sets `backgroundColor: "rgba(232,225,252,1)"`. */
1445
1906
  get bgViolet200(): CssBuilder<T & {
1446
1907
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1447
1908
  }>;
1909
+ /** Sets `backgroundColor: "rgba(218,205,246,1)"`. */
1448
1910
  get bgViolet300(): CssBuilder<T & {
1449
1911
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1450
1912
  }>;
1913
+ /** Sets `backgroundColor: "rgba(204,186,236,1)"`. */
1451
1914
  get bgViolet400(): CssBuilder<T & {
1452
1915
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1453
1916
  }>;
1917
+ /** Sets `backgroundColor: "rgba(190,167,223,1)"`. */
1454
1918
  get bgViolet500(): CssBuilder<T & {
1455
1919
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1456
1920
  }>;
1921
+ /** Sets `backgroundColor: "rgba(173,147,205,1)"`. */
1457
1922
  get bgViolet600(): CssBuilder<T & {
1458
1923
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1459
1924
  }>;
1925
+ /** Sets `backgroundColor: "rgba(153,126,181,1)"`. */
1460
1926
  get bgViolet700(): CssBuilder<T & {
1461
1927
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1462
1928
  }>;
1929
+ /** Sets `backgroundColor: "rgba(128,103,151,1)"`. */
1463
1930
  get bgViolet800(): CssBuilder<T & {
1464
1931
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1465
1932
  }>;
1933
+ /** Sets `backgroundColor: "rgba(100,78,116,1)"`. */
1466
1934
  get bgViolet900(): CssBuilder<T & {
1467
1935
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1468
1936
  }>;
1937
+ /** Sets `backgroundColor: value`. */
1469
1938
  bgColor(value: Properties["backgroundColor"]): CssBuilder<T & {
1470
1939
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
1471
1940
  }>;
1941
+ /** Sets `fill: "rgba(254,254,254,1)"`. */
1472
1942
  get fWhite(): CssBuilder<T & {
1473
1943
  fill: import("csstype").Property.Fill | undefined;
1474
1944
  }>;
1945
+ /** Sets `fill: "rgba(0,0,0,0)"`. */
1475
1946
  get fTransparent(): CssBuilder<T & {
1476
1947
  fill: import("csstype").Property.Fill | undefined;
1477
1948
  }>;
1949
+ /** Sets `fill: "rgba(255,253,253,1)"`. */
1478
1950
  get fGray50(): CssBuilder<T & {
1479
1951
  fill: import("csstype").Property.Fill | undefined;
1480
1952
  }>;
1953
+ /** Sets `fill: "rgba(247,245,245,1)"`. */
1481
1954
  get fGray100(): CssBuilder<T & {
1482
1955
  fill: import("csstype").Property.Fill | undefined;
1483
1956
  }>;
1957
+ /** Sets `fill: "rgba(236,235,235,1)"`. */
1484
1958
  get fGray200(): CssBuilder<T & {
1485
1959
  fill: import("csstype").Property.Fill | undefined;
1486
1960
  }>;
1961
+ /** Sets `fill: "rgba(221,220,220,1)"`. */
1487
1962
  get fGray300(): CssBuilder<T & {
1488
1963
  fill: import("csstype").Property.Fill | undefined;
1489
1964
  }>;
1965
+ /** Sets `fill: "rgba(201,201,201,1)"`. */
1490
1966
  get fGray400(): CssBuilder<T & {
1491
1967
  fill: import("csstype").Property.Fill | undefined;
1492
1968
  }>;
1969
+ /** Sets `fill: "rgba(175,175,175,1)"`. */
1493
1970
  get fGray500(): CssBuilder<T & {
1494
1971
  fill: import("csstype").Property.Fill | undefined;
1495
1972
  }>;
1973
+ /** Sets `fill: "rgba(141,141,141,1)"`. */
1496
1974
  get fGray600(): CssBuilder<T & {
1497
1975
  fill: import("csstype").Property.Fill | undefined;
1498
1976
  }>;
1977
+ /** Sets `fill: "rgba(100,100,100,1)"`. */
1499
1978
  get fGray700(): CssBuilder<T & {
1500
1979
  fill: import("csstype").Property.Fill | undefined;
1501
1980
  }>;
1981
+ /** Sets `fill: "rgba(53,53,53,1)"`. */
1502
1982
  get fGray800(): CssBuilder<T & {
1503
1983
  fill: import("csstype").Property.Fill | undefined;
1504
1984
  }>;
1985
+ /** Sets `fill: "rgba(36,36,36,1)"`. */
1505
1986
  get fGray900(): CssBuilder<T & {
1506
1987
  fill: import("csstype").Property.Fill | undefined;
1507
1988
  }>;
1989
+ /** Sets `fill: "rgba(240,249,255,1)"`. */
1508
1990
  get fLightBlue50(): CssBuilder<T & {
1509
1991
  fill: import("csstype").Property.Fill | undefined;
1510
1992
  }>;
1993
+ /** Sets `fill: "rgba(224,242,254,1)"`. */
1511
1994
  get fLightBlue100(): CssBuilder<T & {
1512
1995
  fill: import("csstype").Property.Fill | undefined;
1513
1996
  }>;
1997
+ /** Sets `fill: "rgba(186,230,253,1)"`. */
1514
1998
  get fLightBlue200(): CssBuilder<T & {
1515
1999
  fill: import("csstype").Property.Fill | undefined;
1516
2000
  }>;
2001
+ /** Sets `fill: "rgba(125,211,252,1)"`. */
1517
2002
  get fLightBlue300(): CssBuilder<T & {
1518
2003
  fill: import("csstype").Property.Fill | undefined;
1519
2004
  }>;
2005
+ /** Sets `fill: "rgba(56,189,248,1)"`. */
1520
2006
  get fLightBlue400(): CssBuilder<T & {
1521
2007
  fill: import("csstype").Property.Fill | undefined;
1522
2008
  }>;
2009
+ /** Sets `fill: "rgba(14,165,233,1)"`. */
1523
2010
  get fLightBlue500(): CssBuilder<T & {
1524
2011
  fill: import("csstype").Property.Fill | undefined;
1525
2012
  }>;
2013
+ /** Sets `fill: "rgba(2,143,199,1)"`. */
1526
2014
  get fLightBlue600(): CssBuilder<T & {
1527
2015
  fill: import("csstype").Property.Fill | undefined;
1528
2016
  }>;
2017
+ /** Sets `fill: "rgba(3,105,161,1)"`. */
1529
2018
  get fLightBlue700(): CssBuilder<T & {
1530
2019
  fill: import("csstype").Property.Fill | undefined;
1531
2020
  }>;
2021
+ /** Sets `fill: "rgba(7,89,133,1)"`. */
1532
2022
  get fLightBlue800(): CssBuilder<T & {
1533
2023
  fill: import("csstype").Property.Fill | undefined;
1534
2024
  }>;
2025
+ /** Sets `fill: "rgba(12,74,110,1)"`. */
1535
2026
  get fLightBlue900(): CssBuilder<T & {
1536
2027
  fill: import("csstype").Property.Fill | undefined;
1537
2028
  }>;
2029
+ /** Sets `fill: "rgba(255,242,242,1)"`. */
1538
2030
  get fRed50(): CssBuilder<T & {
1539
2031
  fill: import("csstype").Property.Fill | undefined;
1540
2032
  }>;
2033
+ /** Sets `fill: "rgba(253,210,209,1)"`. */
1541
2034
  get fRed100(): CssBuilder<T & {
1542
2035
  fill: import("csstype").Property.Fill | undefined;
1543
2036
  }>;
2037
+ /** Sets `fill: "rgba(249,181,177,1)"`. */
1544
2038
  get fRed200(): CssBuilder<T & {
1545
2039
  fill: import("csstype").Property.Fill | undefined;
1546
2040
  }>;
2041
+ /** Sets `fill: "rgba(242,155,148,1)"`. */
1547
2042
  get fRed300(): CssBuilder<T & {
1548
2043
  fill: import("csstype").Property.Fill | undefined;
1549
2044
  }>;
2045
+ /** Sets `fill: "rgba(232,133,122,1)"`. */
1550
2046
  get fRed400(): CssBuilder<T & {
1551
2047
  fill: import("csstype").Property.Fill | undefined;
1552
2048
  }>;
2049
+ /** Sets `fill: "rgba(218,114,100,1)"`. */
1553
2050
  get fRed500(): CssBuilder<T & {
1554
2051
  fill: import("csstype").Property.Fill | undefined;
1555
2052
  }>;
2053
+ /** Sets `fill: "rgba(200,98,81,1)"`. */
1556
2054
  get fRed600(): CssBuilder<T & {
1557
2055
  fill: import("csstype").Property.Fill | undefined;
1558
2056
  }>;
2057
+ /** Sets `fill: "rgba(176,83,73,1)"`. */
1559
2058
  get fRed700(): CssBuilder<T & {
1560
2059
  fill: import("csstype").Property.Fill | undefined;
1561
2060
  }>;
2061
+ /** Sets `fill: "rgba(149,68,64,1)"`. */
1562
2062
  get fRed800(): CssBuilder<T & {
1563
2063
  fill: import("csstype").Property.Fill | undefined;
1564
2064
  }>;
2065
+ /** Sets `fill: "rgba(120,54,54,1)"`. */
1565
2066
  get fRed900(): CssBuilder<T & {
1566
2067
  fill: import("csstype").Property.Fill | undefined;
1567
2068
  }>;
2069
+ /** Sets `fill: "rgba(255,254,242,1)"`. */
1568
2070
  get fYellow50(): CssBuilder<T & {
1569
2071
  fill: import("csstype").Property.Fill | undefined;
1570
2072
  }>;
2073
+ /** Sets `fill: "rgba(255,254,212,1)"`. */
1571
2074
  get fYellow100(): CssBuilder<T & {
1572
2075
  fill: import("csstype").Property.Fill | undefined;
1573
2076
  }>;
2077
+ /** Sets `fill: "rgba(255,250,180,1)"`. */
1574
2078
  get fYellow200(): CssBuilder<T & {
1575
2079
  fill: import("csstype").Property.Fill | undefined;
1576
2080
  }>;
2081
+ /** Sets `fill: "rgba(255,240,150,1)"`. */
1577
2082
  get fYellow300(): CssBuilder<T & {
1578
2083
  fill: import("csstype").Property.Fill | undefined;
1579
2084
  }>;
2085
+ /** Sets `fill: "rgba(255,225,123,1)"`. */
1580
2086
  get fYellow400(): CssBuilder<T & {
1581
2087
  fill: import("csstype").Property.Fill | undefined;
1582
2088
  }>;
2089
+ /** Sets `fill: "rgba(255,204,99,1)"`. */
1583
2090
  get fYellow500(): CssBuilder<T & {
1584
2091
  fill: import("csstype").Property.Fill | undefined;
1585
2092
  }>;
2093
+ /** Sets `fill: "rgba(246,177,78,1)"`. */
1586
2094
  get fYellow600(): CssBuilder<T & {
1587
2095
  fill: import("csstype").Property.Fill | undefined;
1588
2096
  }>;
2097
+ /** Sets `fill: "rgba(207,150,73,1)"`. */
1589
2098
  get fYellow700(): CssBuilder<T & {
1590
2099
  fill: import("csstype").Property.Fill | undefined;
1591
2100
  }>;
2101
+ /** Sets `fill: "rgba(164,120,66,1)"`. */
1592
2102
  get fYellow800(): CssBuilder<T & {
1593
2103
  fill: import("csstype").Property.Fill | undefined;
1594
2104
  }>;
2105
+ /** Sets `fill: "rgba(120,89,54,1)"`. */
1595
2106
  get fYellow900(): CssBuilder<T & {
1596
2107
  fill: import("csstype").Property.Fill | undefined;
1597
2108
  }>;
2109
+ /** Sets `fill: "rgba(250,255,250,1)"`. */
1598
2110
  get fGreen50(): CssBuilder<T & {
1599
2111
  fill: import("csstype").Property.Fill | undefined;
1600
2112
  }>;
2113
+ /** Sets `fill: "rgba(223,248,216,1)"`. */
1601
2114
  get fGreen100(): CssBuilder<T & {
1602
2115
  fill: import("csstype").Property.Fill | undefined;
1603
2116
  }>;
2117
+ /** Sets `fill: "rgba(199,239,183,1)"`. */
1604
2118
  get fGreen200(): CssBuilder<T & {
1605
2119
  fill: import("csstype").Property.Fill | undefined;
1606
2120
  }>;
2121
+ /** Sets `fill: "rgba(179,226,153,1)"`. */
1607
2122
  get fGreen300(): CssBuilder<T & {
1608
2123
  fill: import("csstype").Property.Fill | undefined;
1609
2124
  }>;
2125
+ /** Sets `fill: "rgba(163,208,126,1)"`. */
1610
2126
  get fGreen400(): CssBuilder<T & {
1611
2127
  fill: import("csstype").Property.Fill | undefined;
1612
2128
  }>;
2129
+ /** Sets `fill: "rgba(146,185,101,1)"`. */
1613
2130
  get fGreen500(): CssBuilder<T & {
1614
2131
  fill: import("csstype").Property.Fill | undefined;
1615
2132
  }>;
2133
+ /** Sets `fill: "rgba(126,156,79,1)"`. */
1616
2134
  get fGreen600(): CssBuilder<T & {
1617
2135
  fill: import("csstype").Property.Fill | undefined;
1618
2136
  }>;
2137
+ /** Sets `fill: "rgba(101,120,57,1)"`. */
1619
2138
  get fGreen700(): CssBuilder<T & {
1620
2139
  fill: import("csstype").Property.Fill | undefined;
1621
2140
  }>;
2141
+ /** Sets `fill: "rgba(64,93,44,1)"`. */
1622
2142
  get fGreen800(): CssBuilder<T & {
1623
2143
  fill: import("csstype").Property.Fill | undefined;
1624
2144
  }>;
2145
+ /** Sets `fill: "rgba(34,64,31,1)"`. */
1625
2146
  get fGreen900(): CssBuilder<T & {
1626
2147
  fill: import("csstype").Property.Fill | undefined;
1627
2148
  }>;
2149
+ /** Sets `fill: "rgba(245,243,255,1)"`. */
1628
2150
  get fViolet50(): CssBuilder<T & {
1629
2151
  fill: import("csstype").Property.Fill | undefined;
1630
2152
  }>;
2153
+ /** Sets `fill: "rgba(238,234,253,1)"`. */
1631
2154
  get fViolet100(): CssBuilder<T & {
1632
2155
  fill: import("csstype").Property.Fill | undefined;
1633
2156
  }>;
2157
+ /** Sets `fill: "rgba(232,225,252,1)"`. */
1634
2158
  get fViolet200(): CssBuilder<T & {
1635
2159
  fill: import("csstype").Property.Fill | undefined;
1636
2160
  }>;
2161
+ /** Sets `fill: "rgba(218,205,246,1)"`. */
1637
2162
  get fViolet300(): CssBuilder<T & {
1638
2163
  fill: import("csstype").Property.Fill | undefined;
1639
2164
  }>;
2165
+ /** Sets `fill: "rgba(204,186,236,1)"`. */
1640
2166
  get fViolet400(): CssBuilder<T & {
1641
2167
  fill: import("csstype").Property.Fill | undefined;
1642
2168
  }>;
2169
+ /** Sets `fill: "rgba(190,167,223,1)"`. */
1643
2170
  get fViolet500(): CssBuilder<T & {
1644
2171
  fill: import("csstype").Property.Fill | undefined;
1645
2172
  }>;
2173
+ /** Sets `fill: "rgba(173,147,205,1)"`. */
1646
2174
  get fViolet600(): CssBuilder<T & {
1647
2175
  fill: import("csstype").Property.Fill | undefined;
1648
2176
  }>;
2177
+ /** Sets `fill: "rgba(153,126,181,1)"`. */
1649
2178
  get fViolet700(): CssBuilder<T & {
1650
2179
  fill: import("csstype").Property.Fill | undefined;
1651
2180
  }>;
2181
+ /** Sets `fill: "rgba(128,103,151,1)"`. */
1652
2182
  get fViolet800(): CssBuilder<T & {
1653
2183
  fill: import("csstype").Property.Fill | undefined;
1654
2184
  }>;
2185
+ /** Sets `fill: "rgba(100,78,116,1)"`. */
1655
2186
  get fViolet900(): CssBuilder<T & {
1656
2187
  fill: import("csstype").Property.Fill | undefined;
1657
2188
  }>;
2189
+ /** Sets `fill: value`. */
1658
2190
  fill(value: Properties["fill"]): CssBuilder<T & {
1659
2191
  fill: import("csstype").Property.Fill | undefined;
1660
2192
  }>;
2193
+ /** Sets `marginTop: "0px"`. */
1661
2194
  get mt0(): CssBuilder<T & {
1662
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2195
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1663
2196
  }>;
2197
+ /** Sets `marginTop: "8px"`. */
1664
2198
  get mt1(): CssBuilder<T & {
1665
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2199
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1666
2200
  }>;
2201
+ /** Sets `marginTop: "16px"`. */
1667
2202
  get mt2(): CssBuilder<T & {
1668
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2203
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1669
2204
  }>;
2205
+ /** Sets `marginTop: "24px"`. */
1670
2206
  get mt3(): CssBuilder<T & {
1671
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2207
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1672
2208
  }>;
2209
+ /** Sets `marginTop: "32px"`. */
1673
2210
  get mt4(): CssBuilder<T & {
1674
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2211
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1675
2212
  }>;
2213
+ /** Sets `marginTop: "40px"`. */
1676
2214
  get mt5(): CssBuilder<T & {
1677
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2215
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1678
2216
  }>;
2217
+ /** Sets `marginTop: "48px"`. */
1679
2218
  get mt6(): CssBuilder<T & {
1680
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2219
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1681
2220
  }>;
2221
+ /** Sets `marginTop: "56px"`. */
1682
2222
  get mt7(): CssBuilder<T & {
1683
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2223
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1684
2224
  }>;
2225
+ /** Sets `marginTop: "64px"`. */
1685
2226
  get mt8(): CssBuilder<T & {
1686
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2227
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1687
2228
  }>;
2229
+ /** Sets `marginTop: inc`. */
1688
2230
  mt(inc: number | string): CssBuilder<T & {
1689
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2231
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1690
2232
  }>;
2233
+ /** Sets `marginTop: px`. */
1691
2234
  mtPx(px: number): CssBuilder<T & {
1692
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2235
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1693
2236
  }>;
2237
+ /** Sets `marginRight: "0px"`. */
1694
2238
  get mr0(): CssBuilder<T & {
1695
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2239
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1696
2240
  }>;
2241
+ /** Sets `marginRight: "8px"`. */
1697
2242
  get mr1(): CssBuilder<T & {
1698
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2243
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1699
2244
  }>;
2245
+ /** Sets `marginRight: "16px"`. */
1700
2246
  get mr2(): CssBuilder<T & {
1701
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2247
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1702
2248
  }>;
2249
+ /** Sets `marginRight: "24px"`. */
1703
2250
  get mr3(): CssBuilder<T & {
1704
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2251
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1705
2252
  }>;
2253
+ /** Sets `marginRight: "32px"`. */
1706
2254
  get mr4(): CssBuilder<T & {
1707
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2255
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1708
2256
  }>;
2257
+ /** Sets `marginRight: "40px"`. */
1709
2258
  get mr5(): CssBuilder<T & {
1710
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2259
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1711
2260
  }>;
2261
+ /** Sets `marginRight: "48px"`. */
1712
2262
  get mr6(): CssBuilder<T & {
1713
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2263
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1714
2264
  }>;
2265
+ /** Sets `marginRight: "56px"`. */
1715
2266
  get mr7(): CssBuilder<T & {
1716
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2267
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1717
2268
  }>;
2269
+ /** Sets `marginRight: "64px"`. */
1718
2270
  get mr8(): CssBuilder<T & {
1719
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2271
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1720
2272
  }>;
2273
+ /** Sets `marginRight: inc`. */
1721
2274
  mr(inc: number | string): CssBuilder<T & {
1722
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2275
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1723
2276
  }>;
2277
+ /** Sets `marginRight: px`. */
1724
2278
  mrPx(px: number): CssBuilder<T & {
1725
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2279
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1726
2280
  }>;
2281
+ /** Sets `marginBottom: "0px"`. */
1727
2282
  get mb0(): CssBuilder<T & {
1728
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2283
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1729
2284
  }>;
2285
+ /** Sets `marginBottom: "8px"`. */
1730
2286
  get mb1(): CssBuilder<T & {
1731
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2287
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1732
2288
  }>;
2289
+ /** Sets `marginBottom: "16px"`. */
1733
2290
  get mb2(): CssBuilder<T & {
1734
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2291
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1735
2292
  }>;
2293
+ /** Sets `marginBottom: "24px"`. */
1736
2294
  get mb3(): CssBuilder<T & {
1737
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2295
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1738
2296
  }>;
2297
+ /** Sets `marginBottom: "32px"`. */
1739
2298
  get mb4(): CssBuilder<T & {
1740
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2299
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1741
2300
  }>;
2301
+ /** Sets `marginBottom: "40px"`. */
1742
2302
  get mb5(): CssBuilder<T & {
1743
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2303
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1744
2304
  }>;
2305
+ /** Sets `marginBottom: "48px"`. */
1745
2306
  get mb6(): CssBuilder<T & {
1746
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2307
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1747
2308
  }>;
2309
+ /** Sets `marginBottom: "56px"`. */
1748
2310
  get mb7(): CssBuilder<T & {
1749
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2311
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1750
2312
  }>;
2313
+ /** Sets `marginBottom: "64px"`. */
1751
2314
  get mb8(): CssBuilder<T & {
1752
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2315
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1753
2316
  }>;
2317
+ /** Sets `marginBottom: inc`. */
1754
2318
  mb(inc: number | string): CssBuilder<T & {
1755
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2319
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1756
2320
  }>;
2321
+ /** Sets `marginBottom: px`. */
1757
2322
  mbPx(px: number): CssBuilder<T & {
1758
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2323
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1759
2324
  }>;
2325
+ /** Sets `marginLeft: "0px"`. */
1760
2326
  get ml0(): CssBuilder<T & {
1761
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2327
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1762
2328
  }>;
2329
+ /** Sets `marginLeft: "8px"`. */
1763
2330
  get ml1(): CssBuilder<T & {
1764
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2331
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1765
2332
  }>;
2333
+ /** Sets `marginLeft: "16px"`. */
1766
2334
  get ml2(): CssBuilder<T & {
1767
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2335
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1768
2336
  }>;
2337
+ /** Sets `marginLeft: "24px"`. */
1769
2338
  get ml3(): CssBuilder<T & {
1770
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2339
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1771
2340
  }>;
2341
+ /** Sets `marginLeft: "32px"`. */
1772
2342
  get ml4(): CssBuilder<T & {
1773
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2343
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1774
2344
  }>;
2345
+ /** Sets `marginLeft: "40px"`. */
1775
2346
  get ml5(): CssBuilder<T & {
1776
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2347
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1777
2348
  }>;
2349
+ /** Sets `marginLeft: "48px"`. */
1778
2350
  get ml6(): CssBuilder<T & {
1779
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2351
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1780
2352
  }>;
2353
+ /** Sets `marginLeft: "56px"`. */
1781
2354
  get ml7(): CssBuilder<T & {
1782
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2355
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1783
2356
  }>;
2357
+ /** Sets `marginLeft: "64px"`. */
1784
2358
  get ml8(): CssBuilder<T & {
1785
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2359
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1786
2360
  }>;
2361
+ /** Sets `marginLeft: inc`. */
1787
2362
  ml(inc: number | string): CssBuilder<T & {
1788
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2363
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1789
2364
  }>;
2365
+ /** Sets `marginLeft: px`. */
1790
2366
  mlPx(px: number): CssBuilder<T & {
1791
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2367
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1792
2368
  }>;
2369
+ /** Sets `ml: "0px"; mr: "0px"`. */
1793
2370
  get mx0(): CssBuilder<T & {
1794
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2371
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1795
2372
  } & {
1796
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2373
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1797
2374
  }>;
2375
+ /** Sets `ml: "8px"; mr: "8px"`. */
1798
2376
  get mx1(): CssBuilder<T & {
1799
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2377
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1800
2378
  } & {
1801
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2379
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1802
2380
  }>;
2381
+ /** Sets `ml: "16px"; mr: "16px"`. */
1803
2382
  get mx2(): CssBuilder<T & {
1804
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2383
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1805
2384
  } & {
1806
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2385
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1807
2386
  }>;
2387
+ /** Sets `ml: "24px"; mr: "24px"`. */
1808
2388
  get mx3(): CssBuilder<T & {
1809
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2389
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1810
2390
  } & {
1811
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2391
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1812
2392
  }>;
2393
+ /** Sets `ml: "32px"; mr: "32px"`. */
1813
2394
  get mx4(): CssBuilder<T & {
1814
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2395
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1815
2396
  } & {
1816
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2397
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1817
2398
  }>;
2399
+ /** Sets `ml: "40px"; mr: "40px"`. */
1818
2400
  get mx5(): CssBuilder<T & {
1819
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2401
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1820
2402
  } & {
1821
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2403
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1822
2404
  }>;
2405
+ /** Sets `ml: "48px"; mr: "48px"`. */
1823
2406
  get mx6(): CssBuilder<T & {
1824
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2407
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1825
2408
  } & {
1826
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2409
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1827
2410
  }>;
2411
+ /** Sets `ml: "56px"; mr: "56px"`. */
1828
2412
  get mx7(): CssBuilder<T & {
1829
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2413
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1830
2414
  } & {
1831
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2415
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1832
2416
  }>;
2417
+ /** Sets `ml: "64px"; mr: "64px"`. */
1833
2418
  get mx8(): CssBuilder<T & {
1834
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2419
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1835
2420
  } & {
1836
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2421
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1837
2422
  }>;
1838
2423
  mx(inc: number | string): CssBuilder<T & {
1839
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2424
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1840
2425
  } & {
1841
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2426
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1842
2427
  }>;
1843
2428
  mxPx(px: number): CssBuilder<T & {
1844
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2429
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1845
2430
  } & {
1846
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2431
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1847
2432
  }>;
2433
+ /** Sets `mt: "0px"; mb: "0px"`. */
1848
2434
  get my0(): CssBuilder<T & {
1849
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2435
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1850
2436
  } & {
1851
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2437
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1852
2438
  }>;
2439
+ /** Sets `mt: "8px"; mb: "8px"`. */
1853
2440
  get my1(): CssBuilder<T & {
1854
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2441
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1855
2442
  } & {
1856
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2443
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1857
2444
  }>;
2445
+ /** Sets `mt: "16px"; mb: "16px"`. */
1858
2446
  get my2(): CssBuilder<T & {
1859
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2447
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1860
2448
  } & {
1861
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2449
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1862
2450
  }>;
2451
+ /** Sets `mt: "24px"; mb: "24px"`. */
1863
2452
  get my3(): CssBuilder<T & {
1864
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2453
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1865
2454
  } & {
1866
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2455
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1867
2456
  }>;
2457
+ /** Sets `mt: "32px"; mb: "32px"`. */
1868
2458
  get my4(): CssBuilder<T & {
1869
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2459
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1870
2460
  } & {
1871
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2461
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1872
2462
  }>;
2463
+ /** Sets `mt: "40px"; mb: "40px"`. */
1873
2464
  get my5(): CssBuilder<T & {
1874
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2465
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1875
2466
  } & {
1876
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2467
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1877
2468
  }>;
2469
+ /** Sets `mt: "48px"; mb: "48px"`. */
1878
2470
  get my6(): CssBuilder<T & {
1879
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2471
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1880
2472
  } & {
1881
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2473
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1882
2474
  }>;
2475
+ /** Sets `mt: "56px"; mb: "56px"`. */
1883
2476
  get my7(): CssBuilder<T & {
1884
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2477
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1885
2478
  } & {
1886
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2479
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1887
2480
  }>;
2481
+ /** Sets `mt: "64px"; mb: "64px"`. */
1888
2482
  get my8(): CssBuilder<T & {
1889
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2483
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1890
2484
  } & {
1891
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2485
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1892
2486
  }>;
1893
2487
  my(inc: number | string): CssBuilder<T & {
1894
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2488
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1895
2489
  } & {
1896
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2490
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1897
2491
  }>;
1898
2492
  myPx(px: number): CssBuilder<T & {
1899
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2493
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1900
2494
  } & {
1901
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2495
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1902
2496
  }>;
2497
+ /** Sets `mt: "0px"; mb: "0px"; mr: "0px"; ml: "0px"`. */
1903
2498
  get m0(): CssBuilder<T & {
1904
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2499
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1905
2500
  } & {
1906
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2501
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1907
2502
  } & {
1908
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2503
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1909
2504
  } & {
1910
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2505
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1911
2506
  }>;
2507
+ /** Sets `mt: "8px"; mb: "8px"; mr: "8px"; ml: "8px"`. */
1912
2508
  get m1(): CssBuilder<T & {
1913
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2509
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1914
2510
  } & {
1915
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2511
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1916
2512
  } & {
1917
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2513
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1918
2514
  } & {
1919
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2515
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1920
2516
  }>;
2517
+ /** Sets `mt: "16px"; mb: "16px"; mr: "16px"; ml: "16px"`. */
1921
2518
  get m2(): CssBuilder<T & {
1922
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2519
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1923
2520
  } & {
1924
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2521
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1925
2522
  } & {
1926
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2523
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1927
2524
  } & {
1928
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2525
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1929
2526
  }>;
2527
+ /** Sets `mt: "24px"; mb: "24px"; mr: "24px"; ml: "24px"`. */
1930
2528
  get m3(): CssBuilder<T & {
1931
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2529
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1932
2530
  } & {
1933
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2531
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1934
2532
  } & {
1935
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2533
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1936
2534
  } & {
1937
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2535
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1938
2536
  }>;
2537
+ /** Sets `mt: "32px"; mb: "32px"; mr: "32px"; ml: "32px"`. */
1939
2538
  get m4(): CssBuilder<T & {
1940
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2539
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1941
2540
  } & {
1942
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2541
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1943
2542
  } & {
1944
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2543
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1945
2544
  } & {
1946
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2545
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1947
2546
  }>;
2547
+ /** Sets `mt: "40px"; mb: "40px"; mr: "40px"; ml: "40px"`. */
1948
2548
  get m5(): CssBuilder<T & {
1949
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2549
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1950
2550
  } & {
1951
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2551
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1952
2552
  } & {
1953
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2553
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1954
2554
  } & {
1955
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2555
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1956
2556
  }>;
2557
+ /** Sets `mt: "48px"; mb: "48px"; mr: "48px"; ml: "48px"`. */
1957
2558
  get m6(): CssBuilder<T & {
1958
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2559
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1959
2560
  } & {
1960
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2561
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1961
2562
  } & {
1962
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2563
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1963
2564
  } & {
1964
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2565
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1965
2566
  }>;
2567
+ /** Sets `mt: "56px"; mb: "56px"; mr: "56px"; ml: "56px"`. */
1966
2568
  get m7(): CssBuilder<T & {
1967
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2569
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1968
2570
  } & {
1969
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2571
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1970
2572
  } & {
1971
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2573
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1972
2574
  } & {
1973
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2575
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1974
2576
  }>;
2577
+ /** Sets `mt: "64px"; mb: "64px"; mr: "64px"; ml: "64px"`. */
1975
2578
  get m8(): CssBuilder<T & {
1976
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2579
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1977
2580
  } & {
1978
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2581
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1979
2582
  } & {
1980
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2583
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1981
2584
  } & {
1982
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2585
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1983
2586
  }>;
1984
2587
  m(inc: number | string): CssBuilder<T & {
1985
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2588
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1986
2589
  } & {
1987
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2590
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1988
2591
  } & {
1989
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2592
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1990
2593
  } & {
1991
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2594
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
1992
2595
  }>;
1993
2596
  mPx(px: number): CssBuilder<T & {
1994
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
2597
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
1995
2598
  } & {
1996
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
2599
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
1997
2600
  } & {
1998
- marginRight: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
2601
+ marginRight: import("csstype").Property.MarginRight<string | 0> | undefined;
1999
2602
  } & {
2000
- marginLeft: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
2603
+ marginLeft: import("csstype").Property.MarginLeft<string | 0> | undefined;
2001
2604
  }>;
2605
+ /** Sets `paddingTop: "0px"`. */
2002
2606
  get pt0(): CssBuilder<T & {
2003
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2607
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2004
2608
  }>;
2609
+ /** Sets `paddingTop: "8px"`. */
2005
2610
  get pt1(): CssBuilder<T & {
2006
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2611
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2007
2612
  }>;
2613
+ /** Sets `paddingTop: "16px"`. */
2008
2614
  get pt2(): CssBuilder<T & {
2009
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2615
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2010
2616
  }>;
2617
+ /** Sets `paddingTop: "24px"`. */
2011
2618
  get pt3(): CssBuilder<T & {
2012
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2619
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2013
2620
  }>;
2621
+ /** Sets `paddingTop: "32px"`. */
2014
2622
  get pt4(): CssBuilder<T & {
2015
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2623
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2016
2624
  }>;
2625
+ /** Sets `paddingTop: "40px"`. */
2017
2626
  get pt5(): CssBuilder<T & {
2018
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2627
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2019
2628
  }>;
2629
+ /** Sets `paddingTop: "48px"`. */
2020
2630
  get pt6(): CssBuilder<T & {
2021
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2631
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2022
2632
  }>;
2633
+ /** Sets `paddingTop: "56px"`. */
2023
2634
  get pt7(): CssBuilder<T & {
2024
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2635
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2025
2636
  }>;
2637
+ /** Sets `paddingTop: "64px"`. */
2026
2638
  get pt8(): CssBuilder<T & {
2027
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2639
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2028
2640
  }>;
2641
+ /** Sets `paddingTop: inc`. */
2029
2642
  pt(inc: number | string): CssBuilder<T & {
2030
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2643
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2031
2644
  }>;
2645
+ /** Sets `paddingTop: px`. */
2032
2646
  ptPx(px: number): CssBuilder<T & {
2033
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2647
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2034
2648
  }>;
2649
+ /** Sets `paddingRight: "0px"`. */
2035
2650
  get pr0(): CssBuilder<T & {
2036
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2651
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2037
2652
  }>;
2653
+ /** Sets `paddingRight: "8px"`. */
2038
2654
  get pr1(): CssBuilder<T & {
2039
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2655
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2040
2656
  }>;
2657
+ /** Sets `paddingRight: "16px"`. */
2041
2658
  get pr2(): CssBuilder<T & {
2042
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2659
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2043
2660
  }>;
2661
+ /** Sets `paddingRight: "24px"`. */
2044
2662
  get pr3(): CssBuilder<T & {
2045
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2663
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2046
2664
  }>;
2665
+ /** Sets `paddingRight: "32px"`. */
2047
2666
  get pr4(): CssBuilder<T & {
2048
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2667
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2049
2668
  }>;
2669
+ /** Sets `paddingRight: "40px"`. */
2050
2670
  get pr5(): CssBuilder<T & {
2051
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2671
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2052
2672
  }>;
2673
+ /** Sets `paddingRight: "48px"`. */
2053
2674
  get pr6(): CssBuilder<T & {
2054
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2675
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2055
2676
  }>;
2677
+ /** Sets `paddingRight: "56px"`. */
2056
2678
  get pr7(): CssBuilder<T & {
2057
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2679
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2058
2680
  }>;
2681
+ /** Sets `paddingRight: "64px"`. */
2059
2682
  get pr8(): CssBuilder<T & {
2060
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2683
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2061
2684
  }>;
2685
+ /** Sets `paddingRight: inc`. */
2062
2686
  pr(inc: number | string): CssBuilder<T & {
2063
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2687
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2064
2688
  }>;
2689
+ /** Sets `paddingRight: px`. */
2065
2690
  prPx(px: number): CssBuilder<T & {
2066
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2691
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2067
2692
  }>;
2693
+ /** Sets `paddingBottom: "0px"`. */
2068
2694
  get pb0(): CssBuilder<T & {
2069
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2695
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2070
2696
  }>;
2697
+ /** Sets `paddingBottom: "8px"`. */
2071
2698
  get pb1(): CssBuilder<T & {
2072
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2699
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2073
2700
  }>;
2701
+ /** Sets `paddingBottom: "16px"`. */
2074
2702
  get pb2(): CssBuilder<T & {
2075
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2703
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2076
2704
  }>;
2705
+ /** Sets `paddingBottom: "24px"`. */
2077
2706
  get pb3(): CssBuilder<T & {
2078
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2707
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2079
2708
  }>;
2709
+ /** Sets `paddingBottom: "32px"`. */
2080
2710
  get pb4(): CssBuilder<T & {
2081
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2711
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2082
2712
  }>;
2713
+ /** Sets `paddingBottom: "40px"`. */
2083
2714
  get pb5(): CssBuilder<T & {
2084
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2715
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2085
2716
  }>;
2717
+ /** Sets `paddingBottom: "48px"`. */
2086
2718
  get pb6(): CssBuilder<T & {
2087
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2719
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2088
2720
  }>;
2721
+ /** Sets `paddingBottom: "56px"`. */
2089
2722
  get pb7(): CssBuilder<T & {
2090
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2723
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2091
2724
  }>;
2725
+ /** Sets `paddingBottom: "64px"`. */
2092
2726
  get pb8(): CssBuilder<T & {
2093
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2727
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2094
2728
  }>;
2729
+ /** Sets `paddingBottom: inc`. */
2095
2730
  pb(inc: number | string): CssBuilder<T & {
2096
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2731
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2097
2732
  }>;
2733
+ /** Sets `paddingBottom: px`. */
2098
2734
  pbPx(px: number): CssBuilder<T & {
2099
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2735
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2100
2736
  }>;
2737
+ /** Sets `paddingLeft: "0px"`. */
2101
2738
  get pl0(): CssBuilder<T & {
2102
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2739
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2103
2740
  }>;
2741
+ /** Sets `paddingLeft: "8px"`. */
2104
2742
  get pl1(): CssBuilder<T & {
2105
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2743
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2106
2744
  }>;
2745
+ /** Sets `paddingLeft: "16px"`. */
2107
2746
  get pl2(): CssBuilder<T & {
2108
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2747
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2109
2748
  }>;
2749
+ /** Sets `paddingLeft: "24px"`. */
2110
2750
  get pl3(): CssBuilder<T & {
2111
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2751
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2112
2752
  }>;
2753
+ /** Sets `paddingLeft: "32px"`. */
2113
2754
  get pl4(): CssBuilder<T & {
2114
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2755
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2115
2756
  }>;
2757
+ /** Sets `paddingLeft: "40px"`. */
2116
2758
  get pl5(): CssBuilder<T & {
2117
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2759
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2118
2760
  }>;
2761
+ /** Sets `paddingLeft: "48px"`. */
2119
2762
  get pl6(): CssBuilder<T & {
2120
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2763
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2121
2764
  }>;
2765
+ /** Sets `paddingLeft: "56px"`. */
2122
2766
  get pl7(): CssBuilder<T & {
2123
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2767
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2124
2768
  }>;
2769
+ /** Sets `paddingLeft: "64px"`. */
2125
2770
  get pl8(): CssBuilder<T & {
2126
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2771
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2127
2772
  }>;
2773
+ /** Sets `paddingLeft: inc`. */
2128
2774
  pl(inc: number | string): CssBuilder<T & {
2129
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2775
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2130
2776
  }>;
2777
+ /** Sets `paddingLeft: px`. */
2131
2778
  plPx(px: number): CssBuilder<T & {
2132
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2779
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2133
2780
  }>;
2781
+ /** Sets `pl: "0px"; pr: "0px"`. */
2134
2782
  get px0(): CssBuilder<T & {
2135
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2783
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2136
2784
  } & {
2137
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2785
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2138
2786
  }>;
2787
+ /** Sets `pl: "8px"; pr: "8px"`. */
2139
2788
  get px1(): CssBuilder<T & {
2140
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2789
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2141
2790
  } & {
2142
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2791
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2143
2792
  }>;
2793
+ /** Sets `pl: "16px"; pr: "16px"`. */
2144
2794
  get px2(): CssBuilder<T & {
2145
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2795
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2146
2796
  } & {
2147
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2797
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2148
2798
  }>;
2799
+ /** Sets `pl: "24px"; pr: "24px"`. */
2149
2800
  get px3(): CssBuilder<T & {
2150
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2801
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2151
2802
  } & {
2152
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2803
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2153
2804
  }>;
2805
+ /** Sets `pl: "32px"; pr: "32px"`. */
2154
2806
  get px4(): CssBuilder<T & {
2155
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2807
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2156
2808
  } & {
2157
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2809
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2158
2810
  }>;
2811
+ /** Sets `pl: "40px"; pr: "40px"`. */
2159
2812
  get px5(): CssBuilder<T & {
2160
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2813
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2161
2814
  } & {
2162
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2815
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2163
2816
  }>;
2817
+ /** Sets `pl: "48px"; pr: "48px"`. */
2164
2818
  get px6(): CssBuilder<T & {
2165
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2819
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2166
2820
  } & {
2167
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2821
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2168
2822
  }>;
2823
+ /** Sets `pl: "56px"; pr: "56px"`. */
2169
2824
  get px7(): CssBuilder<T & {
2170
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2825
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2171
2826
  } & {
2172
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2827
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2173
2828
  }>;
2829
+ /** Sets `pl: "64px"; pr: "64px"`. */
2174
2830
  get px8(): CssBuilder<T & {
2175
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2831
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2176
2832
  } & {
2177
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2833
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2178
2834
  }>;
2179
2835
  px(inc: number | string): CssBuilder<T & {
2180
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2836
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2181
2837
  } & {
2182
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2838
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2183
2839
  }>;
2184
2840
  pxPx(px: number): CssBuilder<T & {
2185
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2841
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2186
2842
  } & {
2187
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2843
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2188
2844
  }>;
2845
+ /** Sets `pt: "0px"; pb: "0px"`. */
2189
2846
  get py0(): CssBuilder<T & {
2190
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2847
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2191
2848
  } & {
2192
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2849
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2193
2850
  }>;
2851
+ /** Sets `pt: "8px"; pb: "8px"`. */
2194
2852
  get py1(): CssBuilder<T & {
2195
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2853
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2196
2854
  } & {
2197
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2855
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2198
2856
  }>;
2857
+ /** Sets `pt: "16px"; pb: "16px"`. */
2199
2858
  get py2(): CssBuilder<T & {
2200
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2859
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2201
2860
  } & {
2202
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2861
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2203
2862
  }>;
2863
+ /** Sets `pt: "24px"; pb: "24px"`. */
2204
2864
  get py3(): CssBuilder<T & {
2205
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2865
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2206
2866
  } & {
2207
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2867
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2208
2868
  }>;
2869
+ /** Sets `pt: "32px"; pb: "32px"`. */
2209
2870
  get py4(): CssBuilder<T & {
2210
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2871
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2211
2872
  } & {
2212
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2873
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2213
2874
  }>;
2875
+ /** Sets `pt: "40px"; pb: "40px"`. */
2214
2876
  get py5(): CssBuilder<T & {
2215
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2877
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2216
2878
  } & {
2217
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2879
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2218
2880
  }>;
2881
+ /** Sets `pt: "48px"; pb: "48px"`. */
2219
2882
  get py6(): CssBuilder<T & {
2220
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2883
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2221
2884
  } & {
2222
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2885
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2223
2886
  }>;
2887
+ /** Sets `pt: "56px"; pb: "56px"`. */
2224
2888
  get py7(): CssBuilder<T & {
2225
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2889
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2226
2890
  } & {
2227
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2891
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2228
2892
  }>;
2893
+ /** Sets `pt: "64px"; pb: "64px"`. */
2229
2894
  get py8(): CssBuilder<T & {
2230
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2895
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2231
2896
  } & {
2232
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2897
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2233
2898
  }>;
2234
2899
  py(inc: number | string): CssBuilder<T & {
2235
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2900
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2236
2901
  } & {
2237
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2902
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2238
2903
  }>;
2239
2904
  pyPx(px: number): CssBuilder<T & {
2240
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2905
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2241
2906
  } & {
2242
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2907
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2243
2908
  }>;
2909
+ /** Sets `pt: "0px"; pb: "0px"; pr: "0px"; pl: "0px"`. */
2244
2910
  get p0(): CssBuilder<T & {
2245
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2911
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2246
2912
  } & {
2247
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2913
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2248
2914
  } & {
2249
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2915
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2250
2916
  } & {
2251
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2917
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2252
2918
  }>;
2919
+ /** Sets `pt: "8px"; pb: "8px"; pr: "8px"; pl: "8px"`. */
2253
2920
  get p1(): CssBuilder<T & {
2254
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2921
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2255
2922
  } & {
2256
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2923
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2257
2924
  } & {
2258
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2925
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2259
2926
  } & {
2260
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2927
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2261
2928
  }>;
2929
+ /** Sets `pt: "16px"; pb: "16px"; pr: "16px"; pl: "16px"`. */
2262
2930
  get p2(): CssBuilder<T & {
2263
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2931
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2264
2932
  } & {
2265
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2933
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2266
2934
  } & {
2267
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2935
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2268
2936
  } & {
2269
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2937
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2270
2938
  }>;
2939
+ /** Sets `pt: "24px"; pb: "24px"; pr: "24px"; pl: "24px"`. */
2271
2940
  get p3(): CssBuilder<T & {
2272
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2941
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2273
2942
  } & {
2274
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2943
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2275
2944
  } & {
2276
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2945
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2277
2946
  } & {
2278
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2947
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2279
2948
  }>;
2949
+ /** Sets `pt: "32px"; pb: "32px"; pr: "32px"; pl: "32px"`. */
2280
2950
  get p4(): CssBuilder<T & {
2281
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2951
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2282
2952
  } & {
2283
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2953
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2284
2954
  } & {
2285
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2955
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2286
2956
  } & {
2287
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2957
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2288
2958
  }>;
2959
+ /** Sets `pt: "40px"; pb: "40px"; pr: "40px"; pl: "40px"`. */
2289
2960
  get p5(): CssBuilder<T & {
2290
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2961
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2291
2962
  } & {
2292
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2963
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2293
2964
  } & {
2294
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2965
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2295
2966
  } & {
2296
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2967
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2297
2968
  }>;
2969
+ /** Sets `pt: "48px"; pb: "48px"; pr: "48px"; pl: "48px"`. */
2298
2970
  get p6(): CssBuilder<T & {
2299
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2971
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2300
2972
  } & {
2301
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2973
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2302
2974
  } & {
2303
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2975
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2304
2976
  } & {
2305
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2977
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2306
2978
  }>;
2979
+ /** Sets `pt: "56px"; pb: "56px"; pr: "56px"; pl: "56px"`. */
2307
2980
  get p7(): CssBuilder<T & {
2308
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2981
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2309
2982
  } & {
2310
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2983
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2311
2984
  } & {
2312
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2985
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2313
2986
  } & {
2314
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2987
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2315
2988
  }>;
2989
+ /** Sets `pt: "64px"; pb: "64px"; pr: "64px"; pl: "64px"`. */
2316
2990
  get p8(): CssBuilder<T & {
2317
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
2991
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2318
2992
  } & {
2319
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
2993
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2320
2994
  } & {
2321
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
2995
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2322
2996
  } & {
2323
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
2997
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2324
2998
  }>;
2325
2999
  p(inc: number | string): CssBuilder<T & {
2326
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
3000
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2327
3001
  } & {
2328
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
3002
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2329
3003
  } & {
2330
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
3004
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2331
3005
  } & {
2332
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
3006
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2333
3007
  }>;
2334
3008
  pPx(px: number): CssBuilder<T & {
2335
- paddingTop: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
3009
+ paddingTop: import("csstype").Property.PaddingTop<string | 0> | undefined;
2336
3010
  } & {
2337
- paddingBottom: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
3011
+ paddingBottom: import("csstype").Property.PaddingBottom<string | 0> | undefined;
2338
3012
  } & {
2339
- paddingRight: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
3013
+ paddingRight: import("csstype").Property.PaddingRight<string | 0> | undefined;
2340
3014
  } & {
2341
- paddingLeft: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
3015
+ paddingLeft: import("csstype").Property.PaddingLeft<string | 0> | undefined;
2342
3016
  }>;
3017
+ /** Sets `textAlign: "left"`. */
2343
3018
  get tl(): CssBuilder<T & {
2344
3019
  textAlign: import("csstype").Property.TextAlign | undefined;
2345
3020
  }>;
3021
+ /** Sets `textAlign: "center"`. */
2346
3022
  get tc(): CssBuilder<T & {
2347
3023
  textAlign: import("csstype").Property.TextAlign | undefined;
2348
3024
  }>;
3025
+ /** Sets `textAlign: "right"`. */
2349
3026
  get tr(): CssBuilder<T & {
2350
3027
  textAlign: import("csstype").Property.TextAlign | undefined;
2351
3028
  }>;
3029
+ /** Sets `textAlign: "justify"`. */
2352
3030
  get tj(): CssBuilder<T & {
2353
3031
  textAlign: import("csstype").Property.TextAlign | undefined;
2354
3032
  }>;
3033
+ /** Sets `textAlign: value`. */
2355
3034
  ta(value: Properties["textAlign"]): CssBuilder<T & {
2356
3035
  textAlign: import("csstype").Property.TextAlign | undefined;
2357
3036
  }>;
3037
+ /** Sets `textDecoration: "none"`. */
2358
3038
  get noUnderline(): CssBuilder<T & {
2359
- textDecoration: import("csstype").Property.TextDecoration<0 | (string & {})> | undefined;
3039
+ textDecoration: import("csstype").Property.TextDecoration<string | 0> | undefined;
2360
3040
  }>;
3041
+ /** Sets `textDecoration: "line-through"`. */
2361
3042
  get strike(): CssBuilder<T & {
2362
- textDecoration: import("csstype").Property.TextDecoration<0 | (string & {})> | undefined;
3043
+ textDecoration: import("csstype").Property.TextDecoration<string | 0> | undefined;
2363
3044
  }>;
3045
+ /** Sets `textDecoration: "underline"`. */
2364
3046
  get underline(): CssBuilder<T & {
2365
- textDecoration: import("csstype").Property.TextDecoration<0 | (string & {})> | undefined;
3047
+ textDecoration: import("csstype").Property.TextDecoration<string | 0> | undefined;
2366
3048
  }>;
3049
+ /** Sets `textDecoration: value`. */
2367
3050
  textDecoration(value: Properties["textDecoration"]): CssBuilder<T & {
2368
- textDecoration: import("csstype").Property.TextDecoration<0 | (string & {})> | undefined;
3051
+ textDecoration: import("csstype").Property.TextDecoration<string | 0> | undefined;
2369
3052
  }>;
3053
+ /** Sets `textTransform: "capitalize"`. */
2370
3054
  get ttc(): CssBuilder<T & {
2371
3055
  textTransform: import("csstype").Property.TextTransform | undefined;
2372
3056
  }>;
3057
+ /** Sets `textTransform: "lowercase"`. */
2373
3058
  get ttl(): CssBuilder<T & {
2374
3059
  textTransform: import("csstype").Property.TextTransform | undefined;
2375
3060
  }>;
3061
+ /** Sets `textTransform: "uppercase"`. */
2376
3062
  get ttu(): CssBuilder<T & {
2377
3063
  textTransform: import("csstype").Property.TextTransform | undefined;
2378
3064
  }>;
3065
+ /** Sets `textTransform: "none"`. */
2379
3066
  get ttn(): CssBuilder<T & {
2380
3067
  textTransform: import("csstype").Property.TextTransform | undefined;
2381
3068
  }>;
3069
+ /** Sets `textTransform: value`. */
2382
3070
  tt(value: Properties["textTransform"]): CssBuilder<T & {
2383
3071
  textTransform: import("csstype").Property.TextTransform | undefined;
2384
3072
  }>;
3073
+ /** Sets `fontWeight: 400; fontSize: "10px"; lineHeight: "14px"`. */
2385
3074
  get tiny(): CssBuilder<T & {
2386
3075
  fontWeight: import("csstype").Property.FontWeight | undefined;
2387
3076
  } & {
2388
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3077
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2389
3078
  } & {
2390
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3079
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2391
3080
  }>;
3081
+ /** Sets `fontWeight: 500; fontSize: "10px"; lineHeight: "14px"`. */
2392
3082
  get tinyMd(): CssBuilder<T & {
2393
3083
  fontWeight: import("csstype").Property.FontWeight | undefined;
2394
3084
  } & {
2395
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3085
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2396
3086
  } & {
2397
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3087
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2398
3088
  }>;
3089
+ /** Sets `fontWeight: 600; fontSize: "10px"; lineHeight: "14px"`. */
2399
3090
  get tinySb(): CssBuilder<T & {
2400
3091
  fontWeight: import("csstype").Property.FontWeight | undefined;
2401
3092
  } & {
2402
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3093
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2403
3094
  } & {
2404
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3095
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2405
3096
  }>;
3097
+ /** Sets `fontWeight: 700; fontSize: "10px"; lineHeight: "14px"`. */
2406
3098
  get tinyBd(): CssBuilder<T & {
2407
3099
  fontWeight: import("csstype").Property.FontWeight | undefined;
2408
3100
  } & {
2409
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3101
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2410
3102
  } & {
2411
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3103
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2412
3104
  }>;
3105
+ /** Sets `fontWeight: 400; fontSize: "12px"; lineHeight: "16px"`. */
2413
3106
  get xs(): CssBuilder<T & {
2414
3107
  fontWeight: import("csstype").Property.FontWeight | undefined;
2415
3108
  } & {
2416
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3109
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2417
3110
  } & {
2418
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3111
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2419
3112
  }>;
3113
+ /** Sets `fontWeight: 500; fontSize: "12px"; lineHeight: "16px"`. */
2420
3114
  get xsMd(): CssBuilder<T & {
2421
3115
  fontWeight: import("csstype").Property.FontWeight | undefined;
2422
3116
  } & {
2423
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3117
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2424
3118
  } & {
2425
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3119
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2426
3120
  }>;
3121
+ /** Sets `fontWeight: 600; fontSize: "12px"; lineHeight: "16px"`. */
2427
3122
  get xsSb(): CssBuilder<T & {
2428
3123
  fontWeight: import("csstype").Property.FontWeight | undefined;
2429
3124
  } & {
2430
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3125
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2431
3126
  } & {
2432
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3127
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2433
3128
  }>;
3129
+ /** Sets `fontWeight: 700; fontSize: "12px"; lineHeight: "16px"`. */
2434
3130
  get xsBd(): CssBuilder<T & {
2435
3131
  fontWeight: import("csstype").Property.FontWeight | undefined;
2436
3132
  } & {
2437
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3133
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2438
3134
  } & {
2439
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3135
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2440
3136
  }>;
3137
+ /** Sets `fontWeight: 400; fontSize: "14px"; lineHeight: "20px"`. */
2441
3138
  get sm(): CssBuilder<T & {
2442
3139
  fontWeight: import("csstype").Property.FontWeight | undefined;
2443
3140
  } & {
2444
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3141
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2445
3142
  } & {
2446
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3143
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2447
3144
  }>;
3145
+ /** Sets `fontWeight: 500; fontSize: "14px"; lineHeight: "20px"`. */
2448
3146
  get smMd(): CssBuilder<T & {
2449
3147
  fontWeight: import("csstype").Property.FontWeight | undefined;
2450
3148
  } & {
2451
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3149
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2452
3150
  } & {
2453
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3151
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2454
3152
  }>;
3153
+ /** Sets `fontWeight: 600; fontSize: "14px"; lineHeight: "20px"`. */
2455
3154
  get smSb(): CssBuilder<T & {
2456
3155
  fontWeight: import("csstype").Property.FontWeight | undefined;
2457
3156
  } & {
2458
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3157
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2459
3158
  } & {
2460
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3159
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2461
3160
  }>;
3161
+ /** Sets `fontWeight: 700; fontSize: "14px"; lineHeight: "20px"`. */
2462
3162
  get smBd(): CssBuilder<T & {
2463
3163
  fontWeight: import("csstype").Property.FontWeight | undefined;
2464
3164
  } & {
2465
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3165
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2466
3166
  } & {
2467
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3167
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2468
3168
  }>;
3169
+ /** Sets `fontWeight: 400; fontSize: "16px"; lineHeight: "24px"`. */
2469
3170
  get base(): CssBuilder<T & {
2470
3171
  fontWeight: import("csstype").Property.FontWeight | undefined;
2471
3172
  } & {
2472
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3173
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2473
3174
  } & {
2474
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3175
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2475
3176
  }>;
3177
+ /** Sets `fontWeight: 500; fontSize: "16px"; lineHeight: "24px"`. */
2476
3178
  get baseMd(): CssBuilder<T & {
2477
3179
  fontWeight: import("csstype").Property.FontWeight | undefined;
2478
3180
  } & {
2479
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3181
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2480
3182
  } & {
2481
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3183
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2482
3184
  }>;
3185
+ /** Sets `fontWeight: 600; fontSize: "16px"; lineHeight: "24px"`. */
2483
3186
  get baseSb(): CssBuilder<T & {
2484
3187
  fontWeight: import("csstype").Property.FontWeight | undefined;
2485
3188
  } & {
2486
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3189
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2487
3190
  } & {
2488
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3191
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2489
3192
  }>;
3193
+ /** Sets `fontWeight: 700; fontSize: "16px"; lineHeight: "24px"`. */
2490
3194
  get baseBd(): CssBuilder<T & {
2491
3195
  fontWeight: import("csstype").Property.FontWeight | undefined;
2492
3196
  } & {
2493
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3197
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2494
3198
  } & {
2495
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3199
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2496
3200
  }>;
3201
+ /** Sets `fontWeight: 400; fontSize: "18px"; lineHeight: "28px"`. */
2497
3202
  get lg(): CssBuilder<T & {
2498
3203
  fontWeight: import("csstype").Property.FontWeight | undefined;
2499
3204
  } & {
2500
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3205
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2501
3206
  } & {
2502
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3207
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2503
3208
  }>;
3209
+ /** Sets `fontWeight: 500; fontSize: "18px"; lineHeight: "28px"`. */
2504
3210
  get lgMd(): CssBuilder<T & {
2505
3211
  fontWeight: import("csstype").Property.FontWeight | undefined;
2506
3212
  } & {
2507
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3213
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2508
3214
  } & {
2509
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3215
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2510
3216
  }>;
3217
+ /** Sets `fontWeight: 600; fontSize: "18px"; lineHeight: "28px"`. */
2511
3218
  get lgSb(): CssBuilder<T & {
2512
3219
  fontWeight: import("csstype").Property.FontWeight | undefined;
2513
3220
  } & {
2514
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3221
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2515
3222
  } & {
2516
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3223
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2517
3224
  }>;
3225
+ /** Sets `fontWeight: 700; fontSize: "18px"; lineHeight: "28px"`. */
2518
3226
  get lgBd(): CssBuilder<T & {
2519
3227
  fontWeight: import("csstype").Property.FontWeight | undefined;
2520
3228
  } & {
2521
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3229
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2522
3230
  } & {
2523
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3231
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2524
3232
  }>;
3233
+ /** Sets `fontWeight: 400; fontSize: "20px"; lineHeight: "28px"`. */
2525
3234
  get xl(): CssBuilder<T & {
2526
3235
  fontWeight: import("csstype").Property.FontWeight | undefined;
2527
3236
  } & {
2528
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3237
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2529
3238
  } & {
2530
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3239
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2531
3240
  }>;
3241
+ /** Sets `fontWeight: 500; fontSize: "20px"; lineHeight: "28px"`. */
2532
3242
  get xlMd(): CssBuilder<T & {
2533
3243
  fontWeight: import("csstype").Property.FontWeight | undefined;
2534
3244
  } & {
2535
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3245
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2536
3246
  } & {
2537
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3247
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2538
3248
  }>;
3249
+ /** Sets `fontWeight: 600; fontSize: "20px"; lineHeight: "28px"`. */
2539
3250
  get xlSb(): CssBuilder<T & {
2540
3251
  fontWeight: import("csstype").Property.FontWeight | undefined;
2541
3252
  } & {
2542
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3253
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2543
3254
  } & {
2544
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3255
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2545
3256
  }>;
3257
+ /** Sets `fontWeight: 700; fontSize: "20px"; lineHeight: "28px"`. */
2546
3258
  get xlBd(): CssBuilder<T & {
2547
3259
  fontWeight: import("csstype").Property.FontWeight | undefined;
2548
3260
  } & {
2549
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3261
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2550
3262
  } & {
2551
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3263
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2552
3264
  }>;
3265
+ /** Sets `fontWeight: 400; fontSize: "24px"; lineHeight: "32px"`. */
2553
3266
  get xl2(): CssBuilder<T & {
2554
3267
  fontWeight: import("csstype").Property.FontWeight | undefined;
2555
3268
  } & {
2556
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3269
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2557
3270
  } & {
2558
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3271
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2559
3272
  }>;
3273
+ /** Sets `fontWeight: 500; fontSize: "24px"; lineHeight: "32px"`. */
2560
3274
  get xl2Md(): CssBuilder<T & {
2561
3275
  fontWeight: import("csstype").Property.FontWeight | undefined;
2562
3276
  } & {
2563
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3277
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2564
3278
  } & {
2565
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3279
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2566
3280
  }>;
3281
+ /** Sets `fontWeight: 600; fontSize: "24px"; lineHeight: "32px"`. */
2567
3282
  get xl2Sb(): CssBuilder<T & {
2568
3283
  fontWeight: import("csstype").Property.FontWeight | undefined;
2569
3284
  } & {
2570
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3285
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2571
3286
  } & {
2572
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3287
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2573
3288
  }>;
3289
+ /** Sets `fontWeight: 700; fontSize: "24px"; lineHeight: "32px"`. */
2574
3290
  get xl2Bd(): CssBuilder<T & {
2575
3291
  fontWeight: import("csstype").Property.FontWeight | undefined;
2576
3292
  } & {
2577
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3293
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2578
3294
  } & {
2579
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3295
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2580
3296
  }>;
3297
+ /** Sets `fontWeight: 400; fontSize: "30px"; lineHeight: "36px"`. */
2581
3298
  get xl3(): CssBuilder<T & {
2582
3299
  fontWeight: import("csstype").Property.FontWeight | undefined;
2583
3300
  } & {
2584
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3301
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2585
3302
  } & {
2586
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3303
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2587
3304
  }>;
3305
+ /** Sets `fontWeight: 500; fontSize: "30px"; lineHeight: "36px"`. */
2588
3306
  get xl3Md(): CssBuilder<T & {
2589
3307
  fontWeight: import("csstype").Property.FontWeight | undefined;
2590
3308
  } & {
2591
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3309
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2592
3310
  } & {
2593
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3311
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2594
3312
  }>;
3313
+ /** Sets `fontWeight: 600; fontSize: "30px"; lineHeight: "36px"`. */
2595
3314
  get xl3Sb(): CssBuilder<T & {
2596
3315
  fontWeight: import("csstype").Property.FontWeight | undefined;
2597
3316
  } & {
2598
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3317
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2599
3318
  } & {
2600
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3319
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2601
3320
  }>;
3321
+ /** Sets `fontWeight: 700; fontSize: "30px"; lineHeight: "36px"`. */
2602
3322
  get xl3Bd(): CssBuilder<T & {
2603
3323
  fontWeight: import("csstype").Property.FontWeight | undefined;
2604
3324
  } & {
2605
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3325
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2606
3326
  } & {
2607
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3327
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2608
3328
  }>;
3329
+ /** Sets `fontWeight: 400; fontSize: "36px"; lineHeight: "40px"`. */
2609
3330
  get xl4(): CssBuilder<T & {
2610
3331
  fontWeight: import("csstype").Property.FontWeight | undefined;
2611
3332
  } & {
2612
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3333
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2613
3334
  } & {
2614
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3335
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2615
3336
  }>;
3337
+ /** Sets `fontWeight: 500; fontSize: "36px"; lineHeight: "40px"`. */
2616
3338
  get xl4Md(): CssBuilder<T & {
2617
3339
  fontWeight: import("csstype").Property.FontWeight | undefined;
2618
3340
  } & {
2619
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3341
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2620
3342
  } & {
2621
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3343
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2622
3344
  }>;
3345
+ /** Sets `fontWeight: 600; fontSize: "36px"; lineHeight: "40px"`. */
2623
3346
  get xl4Sb(): CssBuilder<T & {
2624
3347
  fontWeight: import("csstype").Property.FontWeight | undefined;
2625
3348
  } & {
2626
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3349
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2627
3350
  } & {
2628
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3351
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2629
3352
  }>;
3353
+ /** Sets `fontWeight: 700; fontSize: "36px"; lineHeight: "40px"`. */
2630
3354
  get xl4Bd(): CssBuilder<T & {
2631
3355
  fontWeight: import("csstype").Property.FontWeight | undefined;
2632
3356
  } & {
2633
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3357
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2634
3358
  } & {
2635
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3359
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2636
3360
  }>;
3361
+ /** Sets `fontWeight: 400; fontSize: "48px"; lineHeight: "48px"`. */
2637
3362
  get xl5(): CssBuilder<T & {
2638
3363
  fontWeight: import("csstype").Property.FontWeight | undefined;
2639
3364
  } & {
2640
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3365
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2641
3366
  } & {
2642
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3367
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2643
3368
  }>;
3369
+ /** Sets `fontWeight: 500; fontSize: "48px"; lineHeight: "48px"`. */
2644
3370
  get xl5Md(): CssBuilder<T & {
2645
3371
  fontWeight: import("csstype").Property.FontWeight | undefined;
2646
3372
  } & {
2647
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3373
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2648
3374
  } & {
2649
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3375
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2650
3376
  }>;
3377
+ /** Sets `fontWeight: 600; fontSize: "48px"; lineHeight: "48px"`. */
2651
3378
  get xl5Sb(): CssBuilder<T & {
2652
3379
  fontWeight: import("csstype").Property.FontWeight | undefined;
2653
3380
  } & {
2654
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3381
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2655
3382
  } & {
2656
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3383
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2657
3384
  }>;
3385
+ /** Sets `fontWeight: 700; fontSize: "48px"; lineHeight: "48px"`. */
2658
3386
  get xl5Bd(): CssBuilder<T & {
2659
3387
  fontWeight: import("csstype").Property.FontWeight | undefined;
2660
3388
  } & {
2661
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3389
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2662
3390
  } & {
2663
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3391
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2664
3392
  }>;
3393
+ /** Sets `maxWidth: "30em"`. */
2665
3394
  get measure(): CssBuilder<T & {
2666
- maxWidth: import("csstype").Property.MaxWidth<0 | (string & {})> | undefined;
3395
+ maxWidth: import("csstype").Property.MaxWidth<string | 0> | undefined;
2667
3396
  }>;
3397
+ /** Sets `maxWidth: "34em"`. */
2668
3398
  get measureWide(): CssBuilder<T & {
2669
- maxWidth: import("csstype").Property.MaxWidth<0 | (string & {})> | undefined;
3399
+ maxWidth: import("csstype").Property.MaxWidth<string | 0> | undefined;
2670
3400
  }>;
3401
+ /** Sets `maxWidth: "20em"`. */
2671
3402
  get measureNarrow(): CssBuilder<T & {
2672
- maxWidth: import("csstype").Property.MaxWidth<0 | (string & {})> | undefined;
3403
+ maxWidth: import("csstype").Property.MaxWidth<string | 0> | undefined;
2673
3404
  }>;
3405
+ /** Sets `textIndent: "1em"; marginTop: 0; marginBottom: 0`. */
2674
3406
  get indent(): CssBuilder<T & {
2675
- textIndent: import("csstype").Property.TextIndent<0 | (string & {})> | undefined;
3407
+ textIndent: import("csstype").Property.TextIndent<string | 0> | undefined;
2676
3408
  } & {
2677
- marginTop: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
3409
+ marginTop: import("csstype").Property.MarginTop<string | 0> | undefined;
2678
3410
  } & {
2679
- marginBottom: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
3411
+ marginBottom: import("csstype").Property.MarginBottom<string | 0> | undefined;
2680
3412
  }>;
3413
+ /** Sets `fontVariant: "small-caps"`. */
2681
3414
  get smallCaps(): CssBuilder<T & {
2682
3415
  fontVariant: import("csstype").Property.FontVariant | undefined;
2683
3416
  }>;
3417
+ /** Sets `whiteSpace: "nowrap"; overflow: "hidden"; textOverflow: "ellipsis"`. */
2684
3418
  get truncate(): CssBuilder<T & {
2685
3419
  whiteSpace: import("csstype").Property.WhiteSpace | undefined;
2686
3420
  } & {
@@ -2688,217 +3422,285 @@ declare class CssBuilder<T extends Properties1> {
2688
3422
  } & {
2689
3423
  textOverflow: import("csstype").Property.TextOverflow | undefined;
2690
3424
  }>;
3425
+ /** Sets `lineHeight: value`. */
2691
3426
  lh(value: Properties["lineHeight"]): CssBuilder<T & {
2692
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3427
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2693
3428
  }>;
3429
+ /** Sets `userSelect: "none"`. */
2694
3430
  get selectNone(): CssBuilder<T & {
2695
3431
  userSelect: import("csstype").Property.UserSelect | undefined;
2696
3432
  }>;
3433
+ /** Sets `userSelect: "text"`. */
2697
3434
  get selectText(): CssBuilder<T & {
2698
3435
  userSelect: import("csstype").Property.UserSelect | undefined;
2699
3436
  }>;
3437
+ /** Sets `userSelect: "all"`. */
2700
3438
  get selectAll(): CssBuilder<T & {
2701
3439
  userSelect: import("csstype").Property.UserSelect | undefined;
2702
3440
  }>;
3441
+ /** Sets `userSelect: "auto"`. */
2703
3442
  get selectAuto(): CssBuilder<T & {
2704
3443
  userSelect: import("csstype").Property.UserSelect | undefined;
2705
3444
  }>;
3445
+ /** Sets `userSelect: value`. */
2706
3446
  select(value: Properties["userSelect"]): CssBuilder<T & {
2707
3447
  userSelect: import("csstype").Property.UserSelect | undefined;
2708
3448
  }>;
3449
+ /** Sets `verticalAlign: "baseline"`. */
2709
3450
  get vBase(): CssBuilder<T & {
2710
- verticalAlign: import("csstype").Property.VerticalAlign<0 | (string & {})> | undefined;
3451
+ verticalAlign: import("csstype").Property.VerticalAlign<string | 0> | undefined;
2711
3452
  }>;
3453
+ /** Sets `verticalAlign: "middle"`. */
2712
3454
  get vMid(): CssBuilder<T & {
2713
- verticalAlign: import("csstype").Property.VerticalAlign<0 | (string & {})> | undefined;
3455
+ verticalAlign: import("csstype").Property.VerticalAlign<string | 0> | undefined;
2714
3456
  }>;
3457
+ /** Sets `verticalAlign: "top"`. */
2715
3458
  get vTop(): CssBuilder<T & {
2716
- verticalAlign: import("csstype").Property.VerticalAlign<0 | (string & {})> | undefined;
3459
+ verticalAlign: import("csstype").Property.VerticalAlign<string | 0> | undefined;
2717
3460
  }>;
3461
+ /** Sets `verticalAlign: "bottom"`. */
2718
3462
  get vBottom(): CssBuilder<T & {
2719
- verticalAlign: import("csstype").Property.VerticalAlign<0 | (string & {})> | undefined;
3463
+ verticalAlign: import("csstype").Property.VerticalAlign<string | 0> | undefined;
2720
3464
  }>;
3465
+ /** Sets `verticalAlign: value`. */
2721
3466
  va(value: Properties["verticalAlign"]): CssBuilder<T & {
2722
- verticalAlign: import("csstype").Property.VerticalAlign<0 | (string & {})> | undefined;
3467
+ verticalAlign: import("csstype").Property.VerticalAlign<string | 0> | undefined;
2723
3468
  }>;
3469
+ /** Sets `visibility: "visible"`. */
2724
3470
  get visible(): CssBuilder<T & {
2725
3471
  visibility: import("csstype").Property.Visibility | undefined;
2726
3472
  }>;
3473
+ /** Sets `visibility: "hidden"`. */
2727
3474
  get invisible(): CssBuilder<T & {
2728
3475
  visibility: import("csstype").Property.Visibility | undefined;
2729
3476
  }>;
3477
+ /** Sets `visibility: value`. */
2730
3478
  visibility(value: Properties["visibility"]): CssBuilder<T & {
2731
3479
  visibility: import("csstype").Property.Visibility | undefined;
2732
3480
  }>;
3481
+ /** Sets `whiteSpace: "nowrap"`. */
2733
3482
  get nowrap(): CssBuilder<T & {
2734
3483
  whiteSpace: import("csstype").Property.WhiteSpace | undefined;
2735
3484
  }>;
3485
+ /** Sets `whiteSpace: "pre"`. */
2736
3486
  get pre(): CssBuilder<T & {
2737
3487
  whiteSpace: import("csstype").Property.WhiteSpace | undefined;
2738
3488
  }>;
3489
+ /** Sets `whiteSpace: "normal"`. */
2739
3490
  get wsNormal(): CssBuilder<T & {
2740
3491
  whiteSpace: import("csstype").Property.WhiteSpace | undefined;
2741
3492
  }>;
3493
+ /** Sets `whiteSpace: value`. */
2742
3494
  whiteSpace(value: Properties["whiteSpace"]): CssBuilder<T & {
2743
3495
  whiteSpace: import("csstype").Property.WhiteSpace | undefined;
2744
3496
  }>;
3497
+ /** Sets `width: "25%"`. */
2745
3498
  get w25(): CssBuilder<T & {
2746
- width: import("csstype").Property.Width<0 | (string & {})> | undefined;
3499
+ width: import("csstype").Property.Width<string | 0> | undefined;
2747
3500
  }>;
3501
+ /** Sets `width: "50%"`. */
2748
3502
  get w50(): CssBuilder<T & {
2749
- width: import("csstype").Property.Width<0 | (string & {})> | undefined;
3503
+ width: import("csstype").Property.Width<string | 0> | undefined;
2750
3504
  }>;
3505
+ /** Sets `width: "75%"`. */
2751
3506
  get w75(): CssBuilder<T & {
2752
- width: import("csstype").Property.Width<0 | (string & {})> | undefined;
3507
+ width: import("csstype").Property.Width<string | 0> | undefined;
2753
3508
  }>;
3509
+ /** Sets `width: "100%"`. */
2754
3510
  get w100(): CssBuilder<T & {
2755
- width: import("csstype").Property.Width<0 | (string & {})> | undefined;
3511
+ width: import("csstype").Property.Width<string | 0> | undefined;
2756
3512
  }>;
3513
+ /** Sets `minWidth: 0`. */
2757
3514
  get mw0(): CssBuilder<T & {
2758
- minWidth: import("csstype").Property.MinWidth<0 | (string & {})> | undefined;
3515
+ minWidth: import("csstype").Property.MinWidth<string | 0> | undefined;
2759
3516
  }>;
3517
+ /** Sets `minWidth: "25%"`. */
2760
3518
  get mw25(): CssBuilder<T & {
2761
- minWidth: import("csstype").Property.MinWidth<0 | (string & {})> | undefined;
3519
+ minWidth: import("csstype").Property.MinWidth<string | 0> | undefined;
2762
3520
  }>;
3521
+ /** Sets `minWidth: "50%"`. */
2763
3522
  get mw50(): CssBuilder<T & {
2764
- minWidth: import("csstype").Property.MinWidth<0 | (string & {})> | undefined;
3523
+ minWidth: import("csstype").Property.MinWidth<string | 0> | undefined;
2765
3524
  }>;
3525
+ /** Sets `minWidth: "75%"`. */
2766
3526
  get mw75(): CssBuilder<T & {
2767
- minWidth: import("csstype").Property.MinWidth<0 | (string & {})> | undefined;
3527
+ minWidth: import("csstype").Property.MinWidth<string | 0> | undefined;
2768
3528
  }>;
3529
+ /** Sets `minWidth: "100%"`. */
2769
3530
  get mw100(): CssBuilder<T & {
2770
- minWidth: import("csstype").Property.MinWidth<0 | (string & {})> | undefined;
3531
+ minWidth: import("csstype").Property.MinWidth<string | 0> | undefined;
2771
3532
  }>;
3533
+ /** Sets `minWidth: value`. */
2772
3534
  mw(value: Properties["minWidth"]): CssBuilder<T & {
2773
- minWidth: import("csstype").Property.MinWidth<0 | (string & {})> | undefined;
3535
+ minWidth: import("csstype").Property.MinWidth<string | 0> | undefined;
2774
3536
  }>;
3537
+ /** Sets `minWidth: px`. */
2775
3538
  mwPx(px: number): CssBuilder<T & {
2776
- minWidth: import("csstype").Property.MinWidth<0 | (string & {})> | undefined;
3539
+ minWidth: import("csstype").Property.MinWidth<string | 0> | undefined;
2777
3540
  }>;
3541
+ /** Sets `maxWidth: "0"`. */
2778
3542
  get maxw0(): CssBuilder<T & {
2779
- maxWidth: import("csstype").Property.MaxWidth<0 | (string & {})> | undefined;
3543
+ maxWidth: import("csstype").Property.MaxWidth<string | 0> | undefined;
2780
3544
  }>;
3545
+ /** Sets `maxWidth: "25%"`. */
2781
3546
  get maxw25(): CssBuilder<T & {
2782
- maxWidth: import("csstype").Property.MaxWidth<0 | (string & {})> | undefined;
3547
+ maxWidth: import("csstype").Property.MaxWidth<string | 0> | undefined;
2783
3548
  }>;
3549
+ /** Sets `maxWidth: "50%"`. */
2784
3550
  get maxw50(): CssBuilder<T & {
2785
- maxWidth: import("csstype").Property.MaxWidth<0 | (string & {})> | undefined;
3551
+ maxWidth: import("csstype").Property.MaxWidth<string | 0> | undefined;
2786
3552
  }>;
3553
+ /** Sets `maxWidth: "75%"`. */
2787
3554
  get maxw75(): CssBuilder<T & {
2788
- maxWidth: import("csstype").Property.MaxWidth<0 | (string & {})> | undefined;
3555
+ maxWidth: import("csstype").Property.MaxWidth<string | 0> | undefined;
2789
3556
  }>;
3557
+ /** Sets `maxWidth: "100%"`. */
2790
3558
  get maxw100(): CssBuilder<T & {
2791
- maxWidth: import("csstype").Property.MaxWidth<0 | (string & {})> | undefined;
3559
+ maxWidth: import("csstype").Property.MaxWidth<string | 0> | undefined;
2792
3560
  }>;
3561
+ /** Sets `maxWidth: value`. */
2793
3562
  maxw(value: Properties["maxWidth"]): CssBuilder<T & {
2794
- maxWidth: import("csstype").Property.MaxWidth<0 | (string & {})> | undefined;
3563
+ maxWidth: import("csstype").Property.MaxWidth<string | 0> | undefined;
2795
3564
  }>;
3565
+ /** Sets `maxWidth: px`. */
2796
3566
  maxwPx(px: number): CssBuilder<T & {
2797
- maxWidth: import("csstype").Property.MaxWidth<0 | (string & {})> | undefined;
3567
+ maxWidth: import("csstype").Property.MaxWidth<string | 0> | undefined;
2798
3568
  }>;
3569
+ /** Sets `width: "0px"`. */
2799
3570
  get w0(): CssBuilder<T & {
2800
- width: import("csstype").Property.Width<0 | (string & {})> | undefined;
3571
+ width: import("csstype").Property.Width<string | 0> | undefined;
2801
3572
  }>;
3573
+ /** Sets `width: "8px"`. */
2802
3574
  get w1(): CssBuilder<T & {
2803
- width: import("csstype").Property.Width<0 | (string & {})> | undefined;
3575
+ width: import("csstype").Property.Width<string | 0> | undefined;
2804
3576
  }>;
3577
+ /** Sets `width: "16px"`. */
2805
3578
  get w2(): CssBuilder<T & {
2806
- width: import("csstype").Property.Width<0 | (string & {})> | undefined;
3579
+ width: import("csstype").Property.Width<string | 0> | undefined;
2807
3580
  }>;
3581
+ /** Sets `width: "24px"`. */
2808
3582
  get w3(): CssBuilder<T & {
2809
- width: import("csstype").Property.Width<0 | (string & {})> | undefined;
3583
+ width: import("csstype").Property.Width<string | 0> | undefined;
2810
3584
  }>;
3585
+ /** Sets `width: "32px"`. */
2811
3586
  get w4(): CssBuilder<T & {
2812
- width: import("csstype").Property.Width<0 | (string & {})> | undefined;
3587
+ width: import("csstype").Property.Width<string | 0> | undefined;
2813
3588
  }>;
3589
+ /** Sets `width: "40px"`. */
2814
3590
  get w5(): CssBuilder<T & {
2815
- width: import("csstype").Property.Width<0 | (string & {})> | undefined;
3591
+ width: import("csstype").Property.Width<string | 0> | undefined;
2816
3592
  }>;
3593
+ /** Sets `width: "48px"`. */
2817
3594
  get w6(): CssBuilder<T & {
2818
- width: import("csstype").Property.Width<0 | (string & {})> | undefined;
3595
+ width: import("csstype").Property.Width<string | 0> | undefined;
2819
3596
  }>;
3597
+ /** Sets `width: "56px"`. */
2820
3598
  get w7(): CssBuilder<T & {
2821
- width: import("csstype").Property.Width<0 | (string & {})> | undefined;
3599
+ width: import("csstype").Property.Width<string | 0> | undefined;
2822
3600
  }>;
3601
+ /** Sets `width: "64px"`. */
2823
3602
  get w8(): CssBuilder<T & {
2824
- width: import("csstype").Property.Width<0 | (string & {})> | undefined;
3603
+ width: import("csstype").Property.Width<string | 0> | undefined;
2825
3604
  }>;
3605
+ /** Sets `width: inc`. */
2826
3606
  w(inc: number | string): CssBuilder<T & {
2827
- width: import("csstype").Property.Width<0 | (string & {})> | undefined;
3607
+ width: import("csstype").Property.Width<string | 0> | undefined;
2828
3608
  }>;
3609
+ /** Sets `width: px`. */
2829
3610
  wPx(px: number): CssBuilder<T & {
2830
- width: import("csstype").Property.Width<0 | (string & {})> | undefined;
3611
+ width: import("csstype").Property.Width<string | 0> | undefined;
2831
3612
  }>;
3613
+ /** Sets `wordBreak: "normal"`. */
2832
3614
  get breakNormal(): CssBuilder<T & {
2833
3615
  wordBreak: import("csstype").Property.WordBreak | undefined;
2834
3616
  }>;
3617
+ /** Sets `wordBreak: "break-all"`. */
2835
3618
  get breakAll(): CssBuilder<T & {
2836
3619
  wordBreak: import("csstype").Property.WordBreak | undefined;
2837
3620
  }>;
3621
+ /** Sets `wordBreak: "keep-all"`. */
2838
3622
  get breakKeepAll(): CssBuilder<T & {
2839
3623
  wordBreak: import("csstype").Property.WordBreak | undefined;
2840
3624
  }>;
3625
+ /** Sets `wordBreak: "break-word"`. */
2841
3626
  get breakWord(): CssBuilder<T & {
2842
3627
  wordBreak: import("csstype").Property.WordBreak | undefined;
2843
3628
  }>;
3629
+ /** Sets `wordBreak: value`. */
2844
3630
  wordBreak(value: Properties["wordBreak"]): CssBuilder<T & {
2845
3631
  wordBreak: import("csstype").Property.WordBreak | undefined;
2846
3632
  }>;
3633
+ /** Sets `zIndex: 0`. */
2847
3634
  get z0(): CssBuilder<T & {
2848
3635
  zIndex: import("csstype").Property.ZIndex | undefined;
2849
3636
  }>;
3637
+ /** Sets `zIndex: 1`. */
2850
3638
  get z1(): CssBuilder<T & {
2851
3639
  zIndex: import("csstype").Property.ZIndex | undefined;
2852
3640
  }>;
3641
+ /** Sets `zIndex: 2`. */
2853
3642
  get z2(): CssBuilder<T & {
2854
3643
  zIndex: import("csstype").Property.ZIndex | undefined;
2855
3644
  }>;
3645
+ /** Sets `zIndex: 3`. */
2856
3646
  get z3(): CssBuilder<T & {
2857
3647
  zIndex: import("csstype").Property.ZIndex | undefined;
2858
3648
  }>;
3649
+ /** Sets `zIndex: 4`. */
2859
3650
  get z4(): CssBuilder<T & {
2860
3651
  zIndex: import("csstype").Property.ZIndex | undefined;
2861
3652
  }>;
3653
+ /** Sets `zIndex: 5`. */
2862
3654
  get z5(): CssBuilder<T & {
2863
3655
  zIndex: import("csstype").Property.ZIndex | undefined;
2864
3656
  }>;
3657
+ /** Sets `zIndex: 999`. */
2865
3658
  get z999(): CssBuilder<T & {
2866
3659
  zIndex: import("csstype").Property.ZIndex | undefined;
2867
3660
  }>;
3661
+ /** Sets `zIndex: 9999`. */
2868
3662
  get z9999(): CssBuilder<T & {
2869
3663
  zIndex: import("csstype").Property.ZIndex | undefined;
2870
3664
  }>;
3665
+ /** Sets `zIndex: "inherit"`. */
2871
3666
  get zInherit(): CssBuilder<T & {
2872
3667
  zIndex: import("csstype").Property.ZIndex | undefined;
2873
3668
  }>;
3669
+ /** Sets `zIndex: "initial"`. */
2874
3670
  get zInitial(): CssBuilder<T & {
2875
3671
  zIndex: import("csstype").Property.ZIndex | undefined;
2876
3672
  }>;
3673
+ /** Sets `zIndex: "unset"`. */
2877
3674
  get zUnset(): CssBuilder<T & {
2878
3675
  zIndex: import("csstype").Property.ZIndex | undefined;
2879
3676
  }>;
3677
+ /** Sets `zIndex: value`. */
2880
3678
  z(value: Properties["zIndex"]): CssBuilder<T & {
2881
3679
  zIndex: import("csstype").Property.ZIndex | undefined;
2882
3680
  }>;
3681
+ /** Sets `fontFamily: "'Inter', sans-serif"`. */
2883
3682
  get sansSerif(): CssBuilder<T & {
2884
3683
  fontFamily: import("csstype").Property.FontFamily | undefined;
2885
3684
  }>;
3685
+ /** Sets `fontFamily: value`. */
2886
3686
  fontFamily(value: Properties["fontFamily"]): CssBuilder<T & {
2887
3687
  fontFamily: import("csstype").Property.FontFamily | undefined;
2888
3688
  }>;
3689
+ /** Sets `transition: "background-color 200ms, border-color 200ms, box-shadow 200ms, left 200ms, right 200ms, margin 200ms"`. */
2889
3690
  get transition(): CssBuilder<T & {
2890
- transition: import("csstype").Property.Transition<string & {}> | undefined;
3691
+ transition: import("csstype").Property.Transition<string> | undefined;
2891
3692
  }>;
3693
+ /** 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
3694
  get buttonBase(): CssBuilder<T & {
2893
3695
  fontWeight: import("csstype").Property.FontWeight | undefined;
2894
3696
  } & {
2895
- fontSize: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
3697
+ fontSize: import("csstype").Property.FontSize<string | 0> | undefined;
2896
3698
  } & {
2897
- lineHeight: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
3699
+ lineHeight: import("csstype").Property.LineHeight<string | 0> | undefined;
2898
3700
  } & {
2899
- outline: import("csstype").Property.Outline<0 | (string & {})> | undefined;
3701
+ outline: import("csstype").Property.Outline<string | 0> | undefined;
2900
3702
  } & {
2901
- borderRadius: import("csstype").Property.BorderRadius<0 | (string & {})> | undefined;
3703
+ borderRadius: import("csstype").Property.BorderRadius<string | 0> | undefined;
2902
3704
  } & {
2903
3705
  display: import("csstype").Property.Display | undefined;
2904
3706
  } & {
@@ -2906,25 +3708,27 @@ declare class CssBuilder<T extends Properties1> {
2906
3708
  } & {
2907
3709
  whiteSpace: import("csstype").Property.WhiteSpace | undefined;
2908
3710
  } & {
2909
- transition: import("csstype").Property.Transition<string & {}> | undefined;
3711
+ transition: import("csstype").Property.Transition<string> | undefined;
2910
3712
  }>;
3713
+ /** Sets `padding: 0; margin: 0; listStyle: "none"`. */
2911
3714
  get listReset(): CssBuilder<T & {
2912
- padding: import("csstype").Property.Padding<0 | (string & {})> | undefined;
3715
+ padding: import("csstype").Property.Padding<string | 0> | undefined;
2913
3716
  } & {
2914
- margin: import("csstype").Property.Margin<0 | (string & {})> | undefined;
3717
+ margin: import("csstype").Property.Margin<string | 0> | undefined;
2915
3718
  } & {
2916
3719
  listStyle: import("csstype").Property.ListStyle | undefined;
2917
3720
  }>;
3721
+ /** 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
3722
  get underlay(): CssBuilder<T & {
2919
3723
  position: import("csstype").Property.Position | undefined;
2920
3724
  } & {
2921
- top: import("csstype").Property.Top<0 | (string & {})> | undefined;
3725
+ top: import("csstype").Property.Top<string | 0> | undefined;
2922
3726
  } & {
2923
- bottom: import("csstype").Property.Bottom<0 | (string & {})> | undefined;
3727
+ bottom: import("csstype").Property.Bottom<string | 0> | undefined;
2924
3728
  } & {
2925
- left: import("csstype").Property.Left<0 | (string & {})> | undefined;
3729
+ left: import("csstype").Property.Left<string | 0> | undefined;
2926
3730
  } & {
2927
- right: import("csstype").Property.Right<0 | (string & {})> | undefined;
3731
+ right: import("csstype").Property.Right<string | 0> | undefined;
2928
3732
  } & {
2929
3733
  display: import("csstype").Property.Display | undefined;
2930
3734
  } & {
@@ -2934,11 +3738,22 @@ declare class CssBuilder<T extends Properties1> {
2934
3738
  } & {
2935
3739
  backgroundColor: import("csstype").Property.BackgroundColor | undefined;
2936
3740
  }>;
3741
+ /** Sets `content: "''"`. */
2937
3742
  get contentEmpty(): CssBuilder<T & {
2938
3743
  content: import("csstype").Property.Content | undefined;
2939
3744
  }>;
2940
3745
  get $(): T;
2941
- if(t: boolean | Breakpoint): CssBuilder<T>;
3746
+ if(bp: Breakpoint): CssBuilder<T>;
3747
+ if(cond: boolean): CssBuilder<T>;
3748
+ get onHover(): CssBuilder<T>;
3749
+ get ifPrint(): CssBuilder<T>;
3750
+ get ifSm(): CssBuilder<T>;
3751
+ get ifMd(): CssBuilder<T>;
3752
+ get ifSmOrMd(): CssBuilder<T>;
3753
+ get ifMdAndUp(): CssBuilder<T>;
3754
+ get ifMdAndDown(): CssBuilder<T>;
3755
+ get ifLg(): CssBuilder<T>;
3756
+ get ifMdOrLg(): CssBuilder<T>;
2942
3757
  get else(): CssBuilder<T>;
2943
3758
  get important(): CssBuilder<T>;
2944
3759
  /** Adds new properties, either a specific key/value or a Properties object, to the current css. */
@@ -3029,11 +3844,7 @@ export declare const Css: CssBuilder<{}>;
3029
3844
  export declare type Margin = "margin" | "marginTop" | "marginRight" | "marginBottom" | "marginLeft";
3030
3845
  export declare type Padding = "padding" | "paddingTop" | "paddingRight" | "paddingBottom" | "paddingLeft";
3031
3846
  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";
3847
+ export declare type Breakpoint = "print" | "sm" | "md" | "smOrMd" | "mdAndUp" | "mdAndDown" | "lg" | "mdOrLg";
3037
3848
  export declare enum Breakpoints {
3038
3849
  print = "@media print",
3039
3850
  sm = "@media screen and (max-width:599px)",
@@ -3044,12 +3855,4 @@ export declare enum Breakpoints {
3044
3855
  lg = "@media screen and (min-width:1025px)",
3045
3856
  mdOrLg = "@media screen and (min-width:600px)"
3046
3857
  }
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
3858
  export {};