@trebired/git-host 1.3.0 → 1.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (71) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/README.md +359 -27
  3. package/dist/api/forge/handler.d.ts +6 -0
  4. package/dist/api/forge/handler.d.ts.map +1 -0
  5. package/dist/api/forge/handler.js +260 -0
  6. package/dist/api/forge/handler.js.map +1 -0
  7. package/dist/api/forge/route.d.ts +34 -0
  8. package/dist/api/forge/route.d.ts.map +1 -0
  9. package/dist/api/forge/route.js +94 -0
  10. package/dist/api/forge/route.js.map +1 -0
  11. package/dist/api/handler/response.d.ts +6 -2
  12. package/dist/api/handler/response.d.ts.map +1 -1
  13. package/dist/api/handler/response.js +5 -0
  14. package/dist/api/handler/response.js.map +1 -1
  15. package/dist/browser/index.d.ts +65 -0
  16. package/dist/browser/index.d.ts.map +1 -0
  17. package/dist/browser/index.js +778 -0
  18. package/dist/browser/index.js.map +1 -0
  19. package/dist/browser/styles.css +317 -0
  20. package/dist/core/create_git_forge.d.ts +4 -0
  21. package/dist/core/create_git_forge.d.ts.map +1 -0
  22. package/dist/core/create_git_forge.js +481 -0
  23. package/dist/core/create_git_forge.js.map +1 -0
  24. package/dist/core/git_forge/storage_memory.d.ts +4 -0
  25. package/dist/core/git_forge/storage_memory.d.ts.map +1 -0
  26. package/dist/core/git_forge/storage_memory.js +140 -0
  27. package/dist/core/git_forge/storage_memory.js.map +1 -0
  28. package/dist/index.d.ts +4 -1
  29. package/dist/index.d.ts.map +1 -1
  30. package/dist/index.js +3 -0
  31. package/dist/index.js.map +1 -1
  32. package/dist/react/client/types.d.ts +45 -1
  33. package/dist/react/client/types.d.ts.map +1 -1
  34. package/dist/react/client.d.ts.map +1 -1
  35. package/dist/react/client.js +135 -2
  36. package/dist/react/client.js.map +1 -1
  37. package/dist/react/components.d.ts +44407 -0
  38. package/dist/react/components.d.ts.map +1 -0
  39. package/dist/react/components.js +733 -0
  40. package/dist/react/components.js.map +1 -0
  41. package/dist/react/hooks/query.d.ts +6 -2
  42. package/dist/react/hooks/query.d.ts.map +1 -1
  43. package/dist/react/hooks/query.js +71 -6
  44. package/dist/react/hooks/query.js.map +1 -1
  45. package/dist/react/hooks/resources.d.ts +50 -3
  46. package/dist/react/hooks/resources.d.ts.map +1 -1
  47. package/dist/react/hooks/resources.js +209 -2
  48. package/dist/react/hooks/resources.js.map +1 -1
  49. package/dist/react/hooks/types.d.ts +15 -2
  50. package/dist/react/hooks/types.d.ts.map +1 -1
  51. package/dist/react/hooks.d.ts +3 -3
  52. package/dist/react/hooks.d.ts.map +1 -1
  53. package/dist/react/hooks.js +2 -2
  54. package/dist/react/hooks.js.map +1 -1
  55. package/dist/react/index.d.ts +5 -2
  56. package/dist/react/index.d.ts.map +1 -1
  57. package/dist/react/index.js +3 -1
  58. package/dist/react/index.js.map +1 -1
  59. package/dist/react/ui/context.d.ts +1907 -0
  60. package/dist/react/ui/context.d.ts.map +1 -0
  61. package/dist/react/ui/context.js +186 -0
  62. package/dist/react/ui/context.js.map +1 -0
  63. package/dist/types/forge.d.ts +220 -0
  64. package/dist/types/forge.d.ts.map +1 -0
  65. package/dist/types/forge.js +2 -0
  66. package/dist/types/forge.js.map +1 -0
  67. package/dist/types/index.d.ts +1 -0
  68. package/dist/types/index.d.ts.map +1 -1
  69. package/dist/types/transports.d.ts +1 -1
  70. package/dist/types/transports.d.ts.map +1 -1
  71. package/package.json +11 -4
@@ -0,0 +1,1907 @@
1
+ import { type CSSProperties, type ComponentType, type ReactNode } from "react";
2
+ import type { GitApiClient } from "../client.js";
3
+ import type { GitBranchSummary, GitCommitDetail, GitCommitSummary, GitCompareSummary, GitForgeActivityEntry, GitForgeFork, GitForgeRelease, GitForgeRepositoryOverview, GitForgeSocialState, GitSearchResult, GitTagDetail, GitTagSummary, GitTreeEntry } from "../../types.js";
4
+ type GitRepositoryPageKey = "activity" | "blame" | "branches" | "code" | "commit" | "commits" | "compare" | "forks" | "overview" | "release" | "releases" | "search" | "tags";
5
+ type GitRepositoryUiSlot = "action-bar" | "actions" | "badge" | "blame" | "blame-commit" | "blame-row" | "breadcrumb" | "breadcrumbs" | "button" | "button-active" | "button-primary" | "card" | "card-header" | "card-subtitle" | "card-title" | "code-block" | "code-inline" | "definition-grid" | "empty-action" | "empty-state" | "empty-title" | "error-state" | "grid" | "header" | "header-actions" | "header-top" | "input" | "list" | "list-item" | "list-link" | "loading-state" | "note" | "page" | "shell-body" | "split" | "stats" | "status" | "subtitle" | "tab-link" | "tabs" | "textarea" | "title" | "title-block";
6
+ type GitRepositoryRouteAdapter = {
7
+ activity: (repositoryKey: string) => string;
8
+ blame: (repositoryKey: string, path: string, ref?: string) => string;
9
+ branches: (repositoryKey: string) => string;
10
+ code: (repositoryKey: string, path?: string, ref?: string) => string;
11
+ commit: (repositoryKey: string, commitRef: string) => string;
12
+ commits: (repositoryKey: string, path?: string, ref?: string) => string;
13
+ compare: (repositoryKey: string, baseRef: string, headRef: string, path?: string) => string;
14
+ forks: (repositoryKey: string) => string;
15
+ overview: (repositoryKey: string) => string;
16
+ release: (repositoryKey: string, releaseId: string) => string;
17
+ releases: (repositoryKey: string) => string;
18
+ search: (repositoryKey: string, query?: string, ref?: string, path?: string) => string;
19
+ tags: (repositoryKey: string) => string;
20
+ };
21
+ type GitRepositoryUiFetchEvent = {
22
+ key: string;
23
+ repositoryKey?: string;
24
+ };
25
+ type GitRepositoryUiActionEvent = {
26
+ action: string;
27
+ repositoryKey?: string;
28
+ };
29
+ type GitRepositoryUiDiagnostics = {
30
+ onActionError?: (event: GitRepositoryUiActionEvent & {
31
+ error: Error;
32
+ input?: unknown;
33
+ }) => void;
34
+ onActionStart?: (event: GitRepositoryUiActionEvent & {
35
+ input?: unknown;
36
+ }) => void;
37
+ onActionSuccess?: (event: GitRepositoryUiActionEvent & {
38
+ input?: unknown;
39
+ result: unknown;
40
+ }) => void;
41
+ onEmptyState?: (event: {
42
+ page: GitRepositoryPageKey;
43
+ reason: string;
44
+ repositoryKey?: string;
45
+ }) => void;
46
+ onFetchError?: (event: GitRepositoryUiFetchEvent & {
47
+ error: Error;
48
+ }) => void;
49
+ onFetchStart?: (event: GitRepositoryUiFetchEvent) => void;
50
+ onFetchSuccess?: (event: GitRepositoryUiFetchEvent & {
51
+ data: unknown;
52
+ }) => void;
53
+ onNavigate?: (event: {
54
+ repositoryKey?: string;
55
+ to: string;
56
+ }) => void;
57
+ onRenderStateChange?: (event: {
58
+ empty: boolean;
59
+ error: boolean;
60
+ loading: boolean;
61
+ page: GitRepositoryPageKey;
62
+ repositoryKey?: string;
63
+ }) => void;
64
+ onViewMount?: (event: {
65
+ page: GitRepositoryPageKey;
66
+ repositoryKey?: string;
67
+ }) => void;
68
+ };
69
+ type GitRepositoryUiTheme = {
70
+ classNames?: Partial<Record<GitRepositoryUiSlot, string>>;
71
+ className?: string;
72
+ density?: "comfortable" | "compact";
73
+ iconOverrides?: Partial<Record<"activity" | "branch" | "code" | "commit" | "compare" | "fork" | "release" | "search" | "star" | "tag" | "watch", string>>;
74
+ mode?: "auto" | "dark" | "light";
75
+ slots?: Partial<Record<GitRepositoryUiSlot, {
76
+ attributes?: Record<string, string | number | boolean | undefined>;
77
+ className?: string;
78
+ style?: CSSProperties;
79
+ }>>;
80
+ typography?: {
81
+ bodyClassName?: string;
82
+ headingClassName?: string;
83
+ };
84
+ unstyled?: boolean;
85
+ variables?: Record<string, string>;
86
+ };
87
+ type GitRepositoryUiBranding = {
88
+ getCloneUrl?: (repositoryKey: string, protocol?: "http" | "ssh") => string;
89
+ subtitle?: string | ((input: {
90
+ overview?: GitForgeRepositoryOverview | null;
91
+ repositoryKey: string;
92
+ }) => string);
93
+ };
94
+ type GitRepositoryUiPolicy = {
95
+ canCreateFork?: boolean;
96
+ canCreateRelease?: boolean;
97
+ canDeleteRelease?: boolean;
98
+ canUpdateRelease?: boolean;
99
+ };
100
+ type GitRepositoryFrontEndInitialData = {
101
+ activity?: GitForgeActivityEntry[] | null;
102
+ blame?: GitCommitDetail | null;
103
+ branches?: GitBranchSummary[] | null;
104
+ commit?: GitCommitDetail | null;
105
+ commits?: GitCommitSummary[] | null;
106
+ compare?: GitCompareSummary | null;
107
+ forks?: GitForgeFork[] | null;
108
+ overview?: GitForgeRepositoryOverview | null;
109
+ release?: GitForgeRelease | null;
110
+ releases?: GitForgeRelease[] | null;
111
+ search?: GitSearchResult | null;
112
+ social?: GitForgeSocialState | null;
113
+ tag?: GitTagDetail | null;
114
+ tags?: GitTagSummary[] | null;
115
+ tree?: GitTreeEntry[] | null;
116
+ };
117
+ type GitRepositoryLoadingStateProps = {
118
+ className?: string;
119
+ message?: string;
120
+ };
121
+ type GitRepositoryErrorStateProps = {
122
+ className?: string;
123
+ error: Error | null;
124
+ onRetry?: () => void;
125
+ };
126
+ type GitRepositoryEmptyStateProps = {
127
+ action?: ReactNode;
128
+ className?: string;
129
+ message?: string;
130
+ title?: string;
131
+ };
132
+ type GitRepositoryUiComponents = {
133
+ EmptyState?: ComponentType<GitRepositoryEmptyStateProps>;
134
+ ErrorState?: ComponentType<GitRepositoryErrorStateProps>;
135
+ LoadingState?: ComponentType<GitRepositoryLoadingStateProps>;
136
+ };
137
+ type GitRepositoryUiContextValue = {
138
+ client?: GitApiClient;
139
+ components: GitRepositoryUiComponents;
140
+ diagnostics: GitRepositoryUiDiagnostics;
141
+ navigate: (to: string) => void;
142
+ policy: GitRepositoryUiPolicy;
143
+ routeAdapter: GitRepositoryRouteAdapter;
144
+ theme: GitRepositoryUiTheme;
145
+ themeStyle: CSSProperties | undefined;
146
+ branding: GitRepositoryUiBranding;
147
+ };
148
+ type GitRepositoryUiProviderProps = {
149
+ branding?: GitRepositoryUiBranding;
150
+ children?: ReactNode;
151
+ client?: GitApiClient;
152
+ components?: GitRepositoryUiComponents;
153
+ diagnostics?: GitRepositoryUiDiagnostics;
154
+ navigate?: (to: string) => void;
155
+ policy?: GitRepositoryUiPolicy;
156
+ routeAdapter?: Partial<GitRepositoryRouteAdapter>;
157
+ theme?: GitRepositoryUiTheme;
158
+ };
159
+ declare function createGitRepositoryRouteAdapter(input?: {
160
+ repositoryBasePath?: string;
161
+ }): GitRepositoryRouteAdapter;
162
+ declare function resolveGitRepositorySlotProps(ui: GitRepositoryUiContextValue, slot: GitRepositoryUiSlot, input?: {
163
+ className?: string;
164
+ style?: CSSProperties;
165
+ [key: string]: unknown;
166
+ }): {
167
+ className: string;
168
+ "data-density": "comfortable" | "compact";
169
+ "data-slot": GitRepositoryUiSlot;
170
+ "data-theme-mode": "auto" | "dark" | "light";
171
+ style: {
172
+ accentColor?: import("csstype").Property.AccentColor | undefined;
173
+ alignContent?: import("csstype").Property.AlignContent | undefined;
174
+ alignItems?: import("csstype").Property.AlignItems | undefined;
175
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
176
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
177
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
178
+ anchorName?: import("csstype").Property.AnchorName | undefined;
179
+ anchorScope?: import("csstype").Property.AnchorScope | undefined;
180
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
181
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}>;
182
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
183
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}>;
184
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
185
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
186
+ animationName?: import("csstype").Property.AnimationName | undefined;
187
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
188
+ animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number>;
189
+ animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number>;
190
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
191
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
192
+ appearance?: import("csstype").Property.Appearance | undefined;
193
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
194
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
195
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
196
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
197
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
198
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
199
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
200
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
201
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
202
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number>;
203
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number>;
204
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
205
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number>;
206
+ baselineShift?: import("csstype").Property.BaselineShift<string | number>;
207
+ blockSize?: import("csstype").Property.BlockSize<string | number>;
208
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
209
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
210
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number>;
211
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
212
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
213
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number>;
214
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
215
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number>;
216
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number>;
217
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
218
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number>;
219
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
220
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number>;
221
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number>;
222
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number>;
223
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
224
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
225
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
226
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number>;
227
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
228
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
229
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number>;
230
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
231
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
232
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number>;
233
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
234
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
235
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number>;
236
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
237
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
238
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number>;
239
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number>;
240
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number>;
241
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number>;
242
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
243
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number>;
244
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number>;
245
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
246
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number>;
247
+ bottom?: import("csstype").Property.Bottom<string | number>;
248
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
249
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
250
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
251
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
252
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
253
+ breakInside?: import("csstype").Property.BreakInside | undefined;
254
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
255
+ caretColor?: import("csstype").Property.CaretColor | undefined;
256
+ caretShape?: import("csstype").Property.CaretShape | undefined;
257
+ clear?: import("csstype").Property.Clear | undefined;
258
+ clipPath?: import("csstype").Property.ClipPath | undefined;
259
+ clipRule?: import("csstype").Property.ClipRule | undefined;
260
+ color?: import("csstype").Property.Color | undefined;
261
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
262
+ colorInterpolationFilters?: import("csstype").Property.ColorInterpolationFilters | undefined;
263
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
264
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
265
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
266
+ columnGap?: import("csstype").Property.ColumnGap<string | number>;
267
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
268
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
269
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number>;
270
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
271
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number>;
272
+ contain?: import("csstype").Property.Contain | undefined;
273
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number>;
274
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number>;
275
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number>;
276
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number>;
277
+ containerName?: import("csstype").Property.ContainerName | undefined;
278
+ containerType?: import("csstype").Property.ContainerType | undefined;
279
+ content?: import("csstype").Property.Content | undefined;
280
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
281
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
282
+ counterReset?: import("csstype").Property.CounterReset | undefined;
283
+ counterSet?: import("csstype").Property.CounterSet | undefined;
284
+ cursor?: import("csstype").Property.Cursor | undefined;
285
+ cx?: import("csstype").Property.Cx<string | number>;
286
+ cy?: import("csstype").Property.Cy<string | number>;
287
+ d?: import("csstype").Property.D | undefined;
288
+ direction?: import("csstype").Property.Direction | undefined;
289
+ display?: import("csstype").Property.Display | undefined;
290
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
291
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
292
+ fieldSizing?: import("csstype").Property.FieldSizing | undefined;
293
+ fill?: import("csstype").Property.Fill | undefined;
294
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
295
+ fillRule?: import("csstype").Property.FillRule | undefined;
296
+ filter?: import("csstype").Property.Filter | undefined;
297
+ flexBasis?: import("csstype").Property.FlexBasis<string | number>;
298
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
299
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
300
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
301
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
302
+ float?: import("csstype").Property.Float | undefined;
303
+ floodColor?: import("csstype").Property.FloodColor | undefined;
304
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
305
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
306
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
307
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
308
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
309
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
310
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
311
+ fontSize?: import("csstype").Property.FontSize<string | number>;
312
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
313
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number>;
314
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
315
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
316
+ fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
317
+ fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
318
+ fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
319
+ fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
320
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
321
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
322
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
323
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
324
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
325
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
326
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
327
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
328
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
329
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
330
+ fontWidth?: import("csstype").Property.FontWidth | undefined;
331
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
332
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number>;
333
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
334
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number>;
335
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
336
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
337
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
338
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
339
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
340
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number>;
341
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number>;
342
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
343
+ height?: import("csstype").Property.Height<string | number>;
344
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
345
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
346
+ hyphens?: import("csstype").Property.Hyphens | undefined;
347
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
348
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
349
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
350
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
351
+ initialLetterAlign?: import("csstype").Property.InitialLetterAlign | undefined;
352
+ inlineSize?: import("csstype").Property.InlineSize<string | number>;
353
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number>;
354
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number>;
355
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number>;
356
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number>;
357
+ interpolateSize?: import("csstype").Property.InterpolateSize | undefined;
358
+ isolation?: import("csstype").Property.Isolation | undefined;
359
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
360
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
361
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
362
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
363
+ left?: import("csstype").Property.Left<string | number>;
364
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number>;
365
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
366
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
367
+ lineHeight?: import("csstype").Property.LineHeight<string | number>;
368
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number>;
369
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
370
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
371
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
372
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number>;
373
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number>;
374
+ marginBottom?: import("csstype").Property.MarginBottom<string | number>;
375
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number>;
376
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number>;
377
+ marginLeft?: import("csstype").Property.MarginLeft<string | number>;
378
+ marginRight?: import("csstype").Property.MarginRight<string | number>;
379
+ marginTop?: import("csstype").Property.MarginTop<string | number>;
380
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
381
+ marker?: import("csstype").Property.Marker | undefined;
382
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
383
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
384
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
385
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
386
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number>;
387
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
388
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
389
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
390
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number>;
391
+ maskClip?: import("csstype").Property.MaskClip | undefined;
392
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
393
+ maskImage?: import("csstype").Property.MaskImage | undefined;
394
+ maskMode?: import("csstype").Property.MaskMode | undefined;
395
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
396
+ maskPosition?: import("csstype").Property.MaskPosition<string | number>;
397
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
398
+ maskSize?: import("csstype").Property.MaskSize<string | number>;
399
+ maskType?: import("csstype").Property.MaskType | undefined;
400
+ masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
401
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
402
+ mathShift?: import("csstype").Property.MathShift | undefined;
403
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
404
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number>;
405
+ maxHeight?: import("csstype").Property.MaxHeight<string | number>;
406
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number>;
407
+ maxLines?: import("csstype").Property.MaxLines | undefined;
408
+ maxWidth?: import("csstype").Property.MaxWidth<string | number>;
409
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number>;
410
+ minHeight?: import("csstype").Property.MinHeight<string | number>;
411
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number>;
412
+ minWidth?: import("csstype").Property.MinWidth<string | number>;
413
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
414
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number>;
415
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
416
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
417
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
418
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number>;
419
+ objectViewBox?: import("csstype").Property.ObjectViewBox | undefined;
420
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number>;
421
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number>;
422
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
423
+ offsetPosition?: import("csstype").Property.OffsetPosition<string | number>;
424
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
425
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
426
+ opacity?: import("csstype").Property.Opacity | undefined;
427
+ order?: import("csstype").Property.Order | undefined;
428
+ orphans?: import("csstype").Property.Orphans | undefined;
429
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
430
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number>;
431
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
432
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number>;
433
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
434
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
435
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
436
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number>;
437
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
438
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
439
+ overflowX?: import("csstype").Property.OverflowX | undefined;
440
+ overflowY?: import("csstype").Property.OverflowY | undefined;
441
+ overlay?: import("csstype").Property.Overlay | undefined;
442
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
443
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
444
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
445
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
446
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number>;
447
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number>;
448
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number>;
449
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number>;
450
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number>;
451
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number>;
452
+ paddingRight?: import("csstype").Property.PaddingRight<string | number>;
453
+ paddingTop?: import("csstype").Property.PaddingTop<string | number>;
454
+ page?: import("csstype").Property.Page | undefined;
455
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
456
+ perspective?: import("csstype").Property.Perspective<string | number>;
457
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number>;
458
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
459
+ position?: import("csstype").Property.Position | undefined;
460
+ positionAnchor?: import("csstype").Property.PositionAnchor | undefined;
461
+ positionArea?: import("csstype").Property.PositionArea | undefined;
462
+ positionTryFallbacks?: import("csstype").Property.PositionTryFallbacks | undefined;
463
+ positionTryOrder?: import("csstype").Property.PositionTryOrder | undefined;
464
+ positionVisibility?: import("csstype").Property.PositionVisibility | undefined;
465
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
466
+ quotes?: import("csstype").Property.Quotes | undefined;
467
+ r?: import("csstype").Property.R<string | number>;
468
+ resize?: import("csstype").Property.Resize | undefined;
469
+ right?: import("csstype").Property.Right<string | number>;
470
+ rotate?: import("csstype").Property.Rotate | undefined;
471
+ rowGap?: import("csstype").Property.RowGap<string | number>;
472
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
473
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
474
+ rubyOverhang?: import("csstype").Property.RubyOverhang | undefined;
475
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
476
+ rx?: import("csstype").Property.Rx<string | number>;
477
+ ry?: import("csstype").Property.Ry<string | number>;
478
+ scale?: import("csstype").Property.Scale | undefined;
479
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
480
+ scrollInitialTarget?: import("csstype").Property.ScrollInitialTarget | undefined;
481
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number>;
482
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number>;
483
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number>;
484
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number>;
485
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number>;
486
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number>;
487
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number>;
488
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number>;
489
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number>;
490
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number>;
491
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number>;
492
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number>;
493
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number>;
494
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number>;
495
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number>;
496
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number>;
497
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
498
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number>;
499
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number>;
500
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number>;
501
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number>;
502
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
503
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
504
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
505
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
506
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
507
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
508
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
509
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
510
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number>;
511
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
512
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
513
+ speakAs?: import("csstype").Property.SpeakAs | undefined;
514
+ stopColor?: import("csstype").Property.StopColor | undefined;
515
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
516
+ stroke?: import("csstype").Property.Stroke | undefined;
517
+ strokeColor?: import("csstype").Property.StrokeColor | undefined;
518
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number>;
519
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number>;
520
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
521
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
522
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
523
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
524
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number>;
525
+ tabSize?: import("csstype").Property.TabSize<string | number>;
526
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
527
+ textAlign?: import("csstype").Property.TextAlign | undefined;
528
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
529
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
530
+ textAutospace?: import("csstype").Property.TextAutospace | undefined;
531
+ textBox?: import("csstype").Property.TextBox | undefined;
532
+ textBoxEdge?: import("csstype").Property.TextBoxEdge | undefined;
533
+ textBoxTrim?: import("csstype").Property.TextBoxTrim | undefined;
534
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
535
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
536
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
537
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
538
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
539
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
540
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number>;
541
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
542
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
543
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
544
+ textIndent?: import("csstype").Property.TextIndent<string | number>;
545
+ textJustify?: import("csstype").Property.TextJustify | undefined;
546
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
547
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
548
+ textRendering?: import("csstype").Property.TextRendering | undefined;
549
+ textShadow?: import("csstype").Property.TextShadow | undefined;
550
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
551
+ textSpacingTrim?: import("csstype").Property.TextSpacingTrim | undefined;
552
+ textTransform?: import("csstype").Property.TextTransform | undefined;
553
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number>;
554
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
555
+ textWrapMode?: import("csstype").Property.TextWrapMode | undefined;
556
+ textWrapStyle?: import("csstype").Property.TextWrapStyle | undefined;
557
+ timelineScope?: import("csstype").Property.TimelineScope | undefined;
558
+ top?: import("csstype").Property.Top<string | number>;
559
+ touchAction?: import("csstype").Property.TouchAction | undefined;
560
+ transform?: import("csstype").Property.Transform | undefined;
561
+ transformBox?: import("csstype").Property.TransformBox | undefined;
562
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number>;
563
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
564
+ transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
565
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}>;
566
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}>;
567
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
568
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
569
+ translate?: import("csstype").Property.Translate<string | number>;
570
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
571
+ userSelect?: import("csstype").Property.UserSelect | undefined;
572
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
573
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number>;
574
+ viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
575
+ viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number>;
576
+ viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
577
+ viewTransitionClass?: import("csstype").Property.ViewTransitionClass | undefined;
578
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
579
+ visibility?: import("csstype").Property.Visibility | undefined;
580
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
581
+ whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
582
+ widows?: import("csstype").Property.Widows | undefined;
583
+ width?: import("csstype").Property.Width<string | number>;
584
+ willChange?: import("csstype").Property.WillChange | undefined;
585
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
586
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number>;
587
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
588
+ writingMode?: import("csstype").Property.WritingMode | undefined;
589
+ x?: import("csstype").Property.X<string | number>;
590
+ y?: import("csstype").Property.Y<string | number>;
591
+ zIndex?: import("csstype").Property.ZIndex | undefined;
592
+ zoom?: import("csstype").Property.Zoom | undefined;
593
+ all?: import("csstype").Property.All | undefined;
594
+ animation?: import("csstype").Property.Animation<string & {}>;
595
+ animationRange?: import("csstype").Property.AnimationRange<string | number>;
596
+ background?: import("csstype").Property.Background<string | number>;
597
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number>;
598
+ border?: import("csstype").Property.Border<string | number>;
599
+ borderBlock?: import("csstype").Property.BorderBlock<string | number>;
600
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
601
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number>;
602
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number>;
603
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
604
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number>;
605
+ borderBottom?: import("csstype").Property.BorderBottom<string | number>;
606
+ borderColor?: import("csstype").Property.BorderColor | undefined;
607
+ borderImage?: import("csstype").Property.BorderImage | undefined;
608
+ borderInline?: import("csstype").Property.BorderInline<string | number>;
609
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
610
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number>;
611
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number>;
612
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
613
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number>;
614
+ borderLeft?: import("csstype").Property.BorderLeft<string | number>;
615
+ borderRadius?: import("csstype").Property.BorderRadius<string | number>;
616
+ borderRight?: import("csstype").Property.BorderRight<string | number>;
617
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
618
+ borderTop?: import("csstype").Property.BorderTop<string | number>;
619
+ borderWidth?: import("csstype").Property.BorderWidth<string | number>;
620
+ caret?: import("csstype").Property.Caret | undefined;
621
+ columnRule?: import("csstype").Property.ColumnRule<string | number>;
622
+ columns?: import("csstype").Property.Columns<string | number>;
623
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number>;
624
+ container?: import("csstype").Property.Container | undefined;
625
+ flex?: import("csstype").Property.Flex<string | number>;
626
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
627
+ font?: import("csstype").Property.Font | undefined;
628
+ gap?: import("csstype").Property.Gap<string | number>;
629
+ grid?: import("csstype").Property.Grid | undefined;
630
+ gridArea?: import("csstype").Property.GridArea | undefined;
631
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
632
+ gridRow?: import("csstype").Property.GridRow | undefined;
633
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
634
+ inset?: import("csstype").Property.Inset<string | number>;
635
+ insetBlock?: import("csstype").Property.InsetBlock<string | number>;
636
+ insetInline?: import("csstype").Property.InsetInline<string | number>;
637
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
638
+ listStyle?: import("csstype").Property.ListStyle | undefined;
639
+ margin?: import("csstype").Property.Margin<string | number>;
640
+ marginBlock?: import("csstype").Property.MarginBlock<string | number>;
641
+ marginInline?: import("csstype").Property.MarginInline<string | number>;
642
+ mask?: import("csstype").Property.Mask<string | number>;
643
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
644
+ motion?: import("csstype").Property.Offset<string | number>;
645
+ offset?: import("csstype").Property.Offset<string | number>;
646
+ outline?: import("csstype").Property.Outline<string | number>;
647
+ overflow?: import("csstype").Property.Overflow | undefined;
648
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
649
+ padding?: import("csstype").Property.Padding<string | number>;
650
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number>;
651
+ paddingInline?: import("csstype").Property.PaddingInline<string | number>;
652
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
653
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
654
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
655
+ positionTry?: import("csstype").Property.PositionTry | undefined;
656
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number>;
657
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number>;
658
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number>;
659
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number>;
660
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number>;
661
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number>;
662
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number>;
663
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
664
+ textDecoration?: import("csstype").Property.TextDecoration<string | number>;
665
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
666
+ textWrap?: import("csstype").Property.TextWrap | undefined;
667
+ transition?: import("csstype").Property.Transition<string & {}>;
668
+ viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
669
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}>;
670
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
671
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}>;
672
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
673
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
674
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
675
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
676
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
677
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
678
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
679
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
680
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
681
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
682
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
683
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number>;
684
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
685
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
686
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
687
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
688
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
689
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
690
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
691
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
692
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number>;
693
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number>;
694
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
695
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
696
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
697
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
698
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number>;
699
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number>;
700
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
701
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number>;
702
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number>;
703
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number>;
704
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number>;
705
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number>;
706
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number>;
707
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number>;
708
+ MozPerspective?: import("csstype").Property.Perspective<string | number>;
709
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number>;
710
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
711
+ MozTabSize?: import("csstype").Property.TabSize<string | number>;
712
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
713
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
714
+ MozTransform?: import("csstype").Property.Transform | undefined;
715
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number>;
716
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
717
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
718
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
719
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
720
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
721
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
722
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
723
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
724
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
725
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
726
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
727
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
728
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
729
+ msFilter?: import("csstype").Property.MsFilter | undefined;
730
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
731
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
732
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
733
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
734
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number>;
735
+ msGridRows?: import("csstype").Property.MsGridRows<string | number>;
736
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
737
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
738
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
739
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number>;
740
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
741
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
742
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
743
+ msOrder?: import("csstype").Property.Order | undefined;
744
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
745
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
746
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
747
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
748
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number>;
749
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number>;
750
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number>;
751
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number>;
752
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
753
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
754
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
755
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
756
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
757
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
758
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
759
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
760
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
761
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
762
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
763
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
764
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
765
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
766
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
767
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
768
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
769
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
770
+ msTransform?: import("csstype").Property.Transform | undefined;
771
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number>;
772
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}>;
773
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}>;
774
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
775
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
776
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
777
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
778
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
779
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number>;
780
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
781
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
782
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
783
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
784
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
785
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}>;
786
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
787
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}>;
788
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
789
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
790
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
791
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
792
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
793
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
794
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
795
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
796
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
797
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
798
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number>;
799
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
800
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
801
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number>;
802
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number>;
803
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number>;
804
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
805
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number>;
806
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number>;
807
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
808
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number>;
809
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
810
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
811
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
812
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
813
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
814
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
815
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
816
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number>;
817
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
818
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number>;
819
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
820
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number>;
821
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
822
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
823
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
824
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
825
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
826
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
827
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number>;
828
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
829
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
830
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
831
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
832
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
833
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
834
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
835
+ WebkitLogicalHeight?: import("csstype").Property.BlockSize<string | number>;
836
+ WebkitLogicalWidth?: import("csstype").Property.InlineSize<string | number>;
837
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number>;
838
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number>;
839
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
840
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number>;
841
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
842
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
843
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
844
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number>;
845
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
846
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
847
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
848
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
849
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number>;
850
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number>;
851
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number>;
852
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
853
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
854
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
855
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number>;
856
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number>;
857
+ WebkitOrder?: import("csstype").Property.Order | undefined;
858
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
859
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number>;
860
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number>;
861
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number>;
862
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number>;
863
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
864
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
865
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
866
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number>;
867
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
868
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
869
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
870
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
871
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
872
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
873
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
874
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
875
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
876
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
877
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
878
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
879
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
880
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number>;
881
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
882
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
883
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
884
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number>;
885
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
886
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}>;
887
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}>;
888
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
889
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
890
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
891
+ WebkitUserSelect?: import("csstype").Property.WebkitUserSelect | undefined;
892
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
893
+ MozAnimation?: import("csstype").Property.Animation<string & {}>;
894
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
895
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number>;
896
+ MozColumns?: import("csstype").Property.Columns<string | number>;
897
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number>;
898
+ MozTransition?: import("csstype").Property.Transition<string & {}>;
899
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
900
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
901
+ msFlex?: import("csstype").Property.Flex<string | number>;
902
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
903
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
904
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
905
+ msTransition?: import("csstype").Property.Transition<string & {}>;
906
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}>;
907
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number>;
908
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
909
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number>;
910
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number>;
911
+ WebkitColumns?: import("csstype").Property.Columns<string | number>;
912
+ WebkitFlex?: import("csstype").Property.Flex<string | number>;
913
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
914
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number>;
915
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
916
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
917
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number>;
918
+ WebkitTransition?: import("csstype").Property.Transition<string & {}>;
919
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
920
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
921
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
922
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
923
+ boxLines?: import("csstype").Property.BoxLines | undefined;
924
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
925
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
926
+ boxPack?: import("csstype").Property.BoxPack | undefined;
927
+ clip?: import("csstype").Property.Clip | undefined;
928
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
929
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number>;
930
+ gridGap?: import("csstype").Property.GridGap<string | number>;
931
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number>;
932
+ imeMode?: import("csstype").Property.ImeMode | undefined;
933
+ insetArea?: import("csstype").Property.PositionArea | undefined;
934
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number>;
935
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number>;
936
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number>;
937
+ offsetInline?: import("csstype").Property.InsetInline<string | number>;
938
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number>;
939
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number>;
940
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
941
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
942
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
943
+ positionTryOptions?: import("csstype").Property.PositionTryFallbacks | undefined;
944
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number>;
945
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number>;
946
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
947
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
948
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
949
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
950
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
951
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
952
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
953
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
954
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
955
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
956
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
957
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
958
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
959
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
960
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
961
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
962
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
963
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number>;
964
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number>;
965
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number>;
966
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number>;
967
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number>;
968
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number>;
969
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
970
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
971
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
972
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
973
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
974
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
975
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
976
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
977
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
978
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
979
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
980
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
981
+ MozOutline?: import("csstype").Property.Outline<string | number>;
982
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
983
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
984
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number>;
985
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
986
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
987
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
988
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
989
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}>;
990
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}>;
991
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
992
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
993
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
994
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
995
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
996
+ OAnimation?: import("csstype").Property.Animation<string & {}>;
997
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}>;
998
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
999
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}>;
1000
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1001
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1002
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
1003
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1004
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1005
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number>;
1006
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
1007
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
1008
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number>;
1009
+ OTabSize?: import("csstype").Property.TabSize<string | number>;
1010
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
1011
+ OTransform?: import("csstype").Property.Transform | undefined;
1012
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number>;
1013
+ OTransition?: import("csstype").Property.Transition<string & {}>;
1014
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}>;
1015
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}>;
1016
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1017
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1018
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1019
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1020
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1021
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1022
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
1023
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1024
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1025
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
1026
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
1027
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
1028
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
1029
+ };
1030
+ };
1031
+ declare function GitRepositoryUiProvider(props: GitRepositoryUiProviderProps): import("react").FunctionComponentElement<import("react").ProviderProps<GitRepositoryUiContextValue>>;
1032
+ declare function useGitRepositoryUi(): GitRepositoryUiContextValue;
1033
+ declare function useGitRepositoryRouteAdapter(): GitRepositoryRouteAdapter;
1034
+ declare function useGitRepositoryDiagnostics(): GitRepositoryUiDiagnostics;
1035
+ declare function useGitRepositoryClassName(slot: GitRepositoryUiSlot, ...values: Array<string | undefined | null | false>): string;
1036
+ declare function useGitRepositorySlotProps(slot: GitRepositoryUiSlot, input?: {
1037
+ className?: string;
1038
+ style?: CSSProperties;
1039
+ [key: string]: unknown;
1040
+ }): {
1041
+ className: string;
1042
+ "data-density": "comfortable" | "compact";
1043
+ "data-slot": GitRepositoryUiSlot;
1044
+ "data-theme-mode": "auto" | "dark" | "light";
1045
+ style: {
1046
+ accentColor?: import("csstype").Property.AccentColor | undefined;
1047
+ alignContent?: import("csstype").Property.AlignContent | undefined;
1048
+ alignItems?: import("csstype").Property.AlignItems | undefined;
1049
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
1050
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
1051
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
1052
+ anchorName?: import("csstype").Property.AnchorName | undefined;
1053
+ anchorScope?: import("csstype").Property.AnchorScope | undefined;
1054
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
1055
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}>;
1056
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
1057
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}>;
1058
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1059
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1060
+ animationName?: import("csstype").Property.AnimationName | undefined;
1061
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1062
+ animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number>;
1063
+ animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number>;
1064
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
1065
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1066
+ appearance?: import("csstype").Property.Appearance | undefined;
1067
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
1068
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
1069
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1070
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
1071
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
1072
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1073
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
1074
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
1075
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1076
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number>;
1077
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number>;
1078
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
1079
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number>;
1080
+ baselineShift?: import("csstype").Property.BaselineShift<string | number>;
1081
+ blockSize?: import("csstype").Property.BlockSize<string | number>;
1082
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
1083
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
1084
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number>;
1085
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
1086
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
1087
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number>;
1088
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
1089
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number>;
1090
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number>;
1091
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
1092
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number>;
1093
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
1094
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number>;
1095
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number>;
1096
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number>;
1097
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
1098
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
1099
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
1100
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number>;
1101
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
1102
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
1103
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number>;
1104
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
1105
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
1106
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number>;
1107
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
1108
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
1109
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number>;
1110
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
1111
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
1112
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number>;
1113
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number>;
1114
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number>;
1115
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number>;
1116
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
1117
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number>;
1118
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number>;
1119
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
1120
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number>;
1121
+ bottom?: import("csstype").Property.Bottom<string | number>;
1122
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
1123
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
1124
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
1125
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
1126
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
1127
+ breakInside?: import("csstype").Property.BreakInside | undefined;
1128
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
1129
+ caretColor?: import("csstype").Property.CaretColor | undefined;
1130
+ caretShape?: import("csstype").Property.CaretShape | undefined;
1131
+ clear?: import("csstype").Property.Clear | undefined;
1132
+ clipPath?: import("csstype").Property.ClipPath | undefined;
1133
+ clipRule?: import("csstype").Property.ClipRule | undefined;
1134
+ color?: import("csstype").Property.Color | undefined;
1135
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1136
+ colorInterpolationFilters?: import("csstype").Property.ColorInterpolationFilters | undefined;
1137
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
1138
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
1139
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
1140
+ columnGap?: import("csstype").Property.ColumnGap<string | number>;
1141
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1142
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1143
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number>;
1144
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
1145
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number>;
1146
+ contain?: import("csstype").Property.Contain | undefined;
1147
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number>;
1148
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number>;
1149
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number>;
1150
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number>;
1151
+ containerName?: import("csstype").Property.ContainerName | undefined;
1152
+ containerType?: import("csstype").Property.ContainerType | undefined;
1153
+ content?: import("csstype").Property.Content | undefined;
1154
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
1155
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
1156
+ counterReset?: import("csstype").Property.CounterReset | undefined;
1157
+ counterSet?: import("csstype").Property.CounterSet | undefined;
1158
+ cursor?: import("csstype").Property.Cursor | undefined;
1159
+ cx?: import("csstype").Property.Cx<string | number>;
1160
+ cy?: import("csstype").Property.Cy<string | number>;
1161
+ d?: import("csstype").Property.D | undefined;
1162
+ direction?: import("csstype").Property.Direction | undefined;
1163
+ display?: import("csstype").Property.Display | undefined;
1164
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
1165
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
1166
+ fieldSizing?: import("csstype").Property.FieldSizing | undefined;
1167
+ fill?: import("csstype").Property.Fill | undefined;
1168
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
1169
+ fillRule?: import("csstype").Property.FillRule | undefined;
1170
+ filter?: import("csstype").Property.Filter | undefined;
1171
+ flexBasis?: import("csstype").Property.FlexBasis<string | number>;
1172
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
1173
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
1174
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
1175
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
1176
+ float?: import("csstype").Property.Float | undefined;
1177
+ floodColor?: import("csstype").Property.FloodColor | undefined;
1178
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
1179
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
1180
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1181
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
1182
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
1183
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
1184
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
1185
+ fontSize?: import("csstype").Property.FontSize<string | number>;
1186
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
1187
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number>;
1188
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
1189
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
1190
+ fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
1191
+ fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
1192
+ fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
1193
+ fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
1194
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
1195
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
1196
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
1197
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
1198
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
1199
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
1200
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
1201
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
1202
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
1203
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
1204
+ fontWidth?: import("csstype").Property.FontWidth | undefined;
1205
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
1206
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number>;
1207
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
1208
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number>;
1209
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
1210
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
1211
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
1212
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
1213
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
1214
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number>;
1215
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number>;
1216
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
1217
+ height?: import("csstype").Property.Height<string | number>;
1218
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
1219
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
1220
+ hyphens?: import("csstype").Property.Hyphens | undefined;
1221
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
1222
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
1223
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
1224
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
1225
+ initialLetterAlign?: import("csstype").Property.InitialLetterAlign | undefined;
1226
+ inlineSize?: import("csstype").Property.InlineSize<string | number>;
1227
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number>;
1228
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number>;
1229
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number>;
1230
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number>;
1231
+ interpolateSize?: import("csstype").Property.InterpolateSize | undefined;
1232
+ isolation?: import("csstype").Property.Isolation | undefined;
1233
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
1234
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
1235
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
1236
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
1237
+ left?: import("csstype").Property.Left<string | number>;
1238
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number>;
1239
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
1240
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
1241
+ lineHeight?: import("csstype").Property.LineHeight<string | number>;
1242
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number>;
1243
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
1244
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
1245
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
1246
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number>;
1247
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number>;
1248
+ marginBottom?: import("csstype").Property.MarginBottom<string | number>;
1249
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number>;
1250
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number>;
1251
+ marginLeft?: import("csstype").Property.MarginLeft<string | number>;
1252
+ marginRight?: import("csstype").Property.MarginRight<string | number>;
1253
+ marginTop?: import("csstype").Property.MarginTop<string | number>;
1254
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
1255
+ marker?: import("csstype").Property.Marker | undefined;
1256
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
1257
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
1258
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
1259
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
1260
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number>;
1261
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
1262
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
1263
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
1264
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number>;
1265
+ maskClip?: import("csstype").Property.MaskClip | undefined;
1266
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
1267
+ maskImage?: import("csstype").Property.MaskImage | undefined;
1268
+ maskMode?: import("csstype").Property.MaskMode | undefined;
1269
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
1270
+ maskPosition?: import("csstype").Property.MaskPosition<string | number>;
1271
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
1272
+ maskSize?: import("csstype").Property.MaskSize<string | number>;
1273
+ maskType?: import("csstype").Property.MaskType | undefined;
1274
+ masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
1275
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
1276
+ mathShift?: import("csstype").Property.MathShift | undefined;
1277
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
1278
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number>;
1279
+ maxHeight?: import("csstype").Property.MaxHeight<string | number>;
1280
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number>;
1281
+ maxLines?: import("csstype").Property.MaxLines | undefined;
1282
+ maxWidth?: import("csstype").Property.MaxWidth<string | number>;
1283
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number>;
1284
+ minHeight?: import("csstype").Property.MinHeight<string | number>;
1285
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number>;
1286
+ minWidth?: import("csstype").Property.MinWidth<string | number>;
1287
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
1288
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number>;
1289
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
1290
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
1291
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
1292
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number>;
1293
+ objectViewBox?: import("csstype").Property.ObjectViewBox | undefined;
1294
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number>;
1295
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number>;
1296
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
1297
+ offsetPosition?: import("csstype").Property.OffsetPosition<string | number>;
1298
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
1299
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
1300
+ opacity?: import("csstype").Property.Opacity | undefined;
1301
+ order?: import("csstype").Property.Order | undefined;
1302
+ orphans?: import("csstype").Property.Orphans | undefined;
1303
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
1304
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number>;
1305
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1306
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number>;
1307
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
1308
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
1309
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
1310
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number>;
1311
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
1312
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
1313
+ overflowX?: import("csstype").Property.OverflowX | undefined;
1314
+ overflowY?: import("csstype").Property.OverflowY | undefined;
1315
+ overlay?: import("csstype").Property.Overlay | undefined;
1316
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
1317
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
1318
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
1319
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
1320
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number>;
1321
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number>;
1322
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number>;
1323
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number>;
1324
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number>;
1325
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number>;
1326
+ paddingRight?: import("csstype").Property.PaddingRight<string | number>;
1327
+ paddingTop?: import("csstype").Property.PaddingTop<string | number>;
1328
+ page?: import("csstype").Property.Page | undefined;
1329
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
1330
+ perspective?: import("csstype").Property.Perspective<string | number>;
1331
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number>;
1332
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
1333
+ position?: import("csstype").Property.Position | undefined;
1334
+ positionAnchor?: import("csstype").Property.PositionAnchor | undefined;
1335
+ positionArea?: import("csstype").Property.PositionArea | undefined;
1336
+ positionTryFallbacks?: import("csstype").Property.PositionTryFallbacks | undefined;
1337
+ positionTryOrder?: import("csstype").Property.PositionTryOrder | undefined;
1338
+ positionVisibility?: import("csstype").Property.PositionVisibility | undefined;
1339
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1340
+ quotes?: import("csstype").Property.Quotes | undefined;
1341
+ r?: import("csstype").Property.R<string | number>;
1342
+ resize?: import("csstype").Property.Resize | undefined;
1343
+ right?: import("csstype").Property.Right<string | number>;
1344
+ rotate?: import("csstype").Property.Rotate | undefined;
1345
+ rowGap?: import("csstype").Property.RowGap<string | number>;
1346
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
1347
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
1348
+ rubyOverhang?: import("csstype").Property.RubyOverhang | undefined;
1349
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
1350
+ rx?: import("csstype").Property.Rx<string | number>;
1351
+ ry?: import("csstype").Property.Ry<string | number>;
1352
+ scale?: import("csstype").Property.Scale | undefined;
1353
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
1354
+ scrollInitialTarget?: import("csstype").Property.ScrollInitialTarget | undefined;
1355
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number>;
1356
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number>;
1357
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number>;
1358
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number>;
1359
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number>;
1360
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number>;
1361
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number>;
1362
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number>;
1363
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number>;
1364
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number>;
1365
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number>;
1366
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number>;
1367
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number>;
1368
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number>;
1369
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number>;
1370
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number>;
1371
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
1372
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number>;
1373
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number>;
1374
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number>;
1375
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number>;
1376
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
1377
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
1378
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
1379
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
1380
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
1381
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
1382
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
1383
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
1384
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number>;
1385
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
1386
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
1387
+ speakAs?: import("csstype").Property.SpeakAs | undefined;
1388
+ stopColor?: import("csstype").Property.StopColor | undefined;
1389
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
1390
+ stroke?: import("csstype").Property.Stroke | undefined;
1391
+ strokeColor?: import("csstype").Property.StrokeColor | undefined;
1392
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number>;
1393
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number>;
1394
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
1395
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
1396
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
1397
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
1398
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number>;
1399
+ tabSize?: import("csstype").Property.TabSize<string | number>;
1400
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
1401
+ textAlign?: import("csstype").Property.TextAlign | undefined;
1402
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
1403
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
1404
+ textAutospace?: import("csstype").Property.TextAutospace | undefined;
1405
+ textBox?: import("csstype").Property.TextBox | undefined;
1406
+ textBoxEdge?: import("csstype").Property.TextBoxEdge | undefined;
1407
+ textBoxTrim?: import("csstype").Property.TextBoxTrim | undefined;
1408
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
1409
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1410
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1411
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
1412
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
1413
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1414
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number>;
1415
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
1416
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
1417
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
1418
+ textIndent?: import("csstype").Property.TextIndent<string | number>;
1419
+ textJustify?: import("csstype").Property.TextJustify | undefined;
1420
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
1421
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
1422
+ textRendering?: import("csstype").Property.TextRendering | undefined;
1423
+ textShadow?: import("csstype").Property.TextShadow | undefined;
1424
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1425
+ textSpacingTrim?: import("csstype").Property.TextSpacingTrim | undefined;
1426
+ textTransform?: import("csstype").Property.TextTransform | undefined;
1427
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number>;
1428
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
1429
+ textWrapMode?: import("csstype").Property.TextWrapMode | undefined;
1430
+ textWrapStyle?: import("csstype").Property.TextWrapStyle | undefined;
1431
+ timelineScope?: import("csstype").Property.TimelineScope | undefined;
1432
+ top?: import("csstype").Property.Top<string | number>;
1433
+ touchAction?: import("csstype").Property.TouchAction | undefined;
1434
+ transform?: import("csstype").Property.Transform | undefined;
1435
+ transformBox?: import("csstype").Property.TransformBox | undefined;
1436
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number>;
1437
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
1438
+ transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
1439
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}>;
1440
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}>;
1441
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1442
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1443
+ translate?: import("csstype").Property.Translate<string | number>;
1444
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
1445
+ userSelect?: import("csstype").Property.UserSelect | undefined;
1446
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
1447
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number>;
1448
+ viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
1449
+ viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number>;
1450
+ viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
1451
+ viewTransitionClass?: import("csstype").Property.ViewTransitionClass | undefined;
1452
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
1453
+ visibility?: import("csstype").Property.Visibility | undefined;
1454
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
1455
+ whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
1456
+ widows?: import("csstype").Property.Widows | undefined;
1457
+ width?: import("csstype").Property.Width<string | number>;
1458
+ willChange?: import("csstype").Property.WillChange | undefined;
1459
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
1460
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number>;
1461
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
1462
+ writingMode?: import("csstype").Property.WritingMode | undefined;
1463
+ x?: import("csstype").Property.X<string | number>;
1464
+ y?: import("csstype").Property.Y<string | number>;
1465
+ zIndex?: import("csstype").Property.ZIndex | undefined;
1466
+ zoom?: import("csstype").Property.Zoom | undefined;
1467
+ all?: import("csstype").Property.All | undefined;
1468
+ animation?: import("csstype").Property.Animation<string & {}>;
1469
+ animationRange?: import("csstype").Property.AnimationRange<string | number>;
1470
+ background?: import("csstype").Property.Background<string | number>;
1471
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number>;
1472
+ border?: import("csstype").Property.Border<string | number>;
1473
+ borderBlock?: import("csstype").Property.BorderBlock<string | number>;
1474
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
1475
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number>;
1476
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number>;
1477
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
1478
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number>;
1479
+ borderBottom?: import("csstype").Property.BorderBottom<string | number>;
1480
+ borderColor?: import("csstype").Property.BorderColor | undefined;
1481
+ borderImage?: import("csstype").Property.BorderImage | undefined;
1482
+ borderInline?: import("csstype").Property.BorderInline<string | number>;
1483
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
1484
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number>;
1485
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number>;
1486
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
1487
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number>;
1488
+ borderLeft?: import("csstype").Property.BorderLeft<string | number>;
1489
+ borderRadius?: import("csstype").Property.BorderRadius<string | number>;
1490
+ borderRight?: import("csstype").Property.BorderRight<string | number>;
1491
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
1492
+ borderTop?: import("csstype").Property.BorderTop<string | number>;
1493
+ borderWidth?: import("csstype").Property.BorderWidth<string | number>;
1494
+ caret?: import("csstype").Property.Caret | undefined;
1495
+ columnRule?: import("csstype").Property.ColumnRule<string | number>;
1496
+ columns?: import("csstype").Property.Columns<string | number>;
1497
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number>;
1498
+ container?: import("csstype").Property.Container | undefined;
1499
+ flex?: import("csstype").Property.Flex<string | number>;
1500
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
1501
+ font?: import("csstype").Property.Font | undefined;
1502
+ gap?: import("csstype").Property.Gap<string | number>;
1503
+ grid?: import("csstype").Property.Grid | undefined;
1504
+ gridArea?: import("csstype").Property.GridArea | undefined;
1505
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
1506
+ gridRow?: import("csstype").Property.GridRow | undefined;
1507
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
1508
+ inset?: import("csstype").Property.Inset<string | number>;
1509
+ insetBlock?: import("csstype").Property.InsetBlock<string | number>;
1510
+ insetInline?: import("csstype").Property.InsetInline<string | number>;
1511
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
1512
+ listStyle?: import("csstype").Property.ListStyle | undefined;
1513
+ margin?: import("csstype").Property.Margin<string | number>;
1514
+ marginBlock?: import("csstype").Property.MarginBlock<string | number>;
1515
+ marginInline?: import("csstype").Property.MarginInline<string | number>;
1516
+ mask?: import("csstype").Property.Mask<string | number>;
1517
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
1518
+ motion?: import("csstype").Property.Offset<string | number>;
1519
+ offset?: import("csstype").Property.Offset<string | number>;
1520
+ outline?: import("csstype").Property.Outline<string | number>;
1521
+ overflow?: import("csstype").Property.Overflow | undefined;
1522
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
1523
+ padding?: import("csstype").Property.Padding<string | number>;
1524
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number>;
1525
+ paddingInline?: import("csstype").Property.PaddingInline<string | number>;
1526
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
1527
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
1528
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
1529
+ positionTry?: import("csstype").Property.PositionTry | undefined;
1530
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number>;
1531
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number>;
1532
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number>;
1533
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number>;
1534
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number>;
1535
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number>;
1536
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number>;
1537
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
1538
+ textDecoration?: import("csstype").Property.TextDecoration<string | number>;
1539
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
1540
+ textWrap?: import("csstype").Property.TextWrap | undefined;
1541
+ transition?: import("csstype").Property.Transition<string & {}>;
1542
+ viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
1543
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}>;
1544
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1545
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}>;
1546
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1547
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1548
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
1549
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1550
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1551
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
1552
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1553
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
1554
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
1555
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
1556
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
1557
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number>;
1558
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
1559
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
1560
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
1561
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
1562
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
1563
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
1564
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1565
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1566
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number>;
1567
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number>;
1568
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
1569
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1570
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
1571
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
1572
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number>;
1573
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number>;
1574
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
1575
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number>;
1576
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number>;
1577
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number>;
1578
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number>;
1579
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number>;
1580
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number>;
1581
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number>;
1582
+ MozPerspective?: import("csstype").Property.Perspective<string | number>;
1583
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number>;
1584
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
1585
+ MozTabSize?: import("csstype").Property.TabSize<string | number>;
1586
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
1587
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1588
+ MozTransform?: import("csstype").Property.Transform | undefined;
1589
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number>;
1590
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
1591
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
1592
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
1593
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
1594
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
1595
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
1596
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
1597
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
1598
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
1599
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
1600
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
1601
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
1602
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
1603
+ msFilter?: import("csstype").Property.MsFilter | undefined;
1604
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
1605
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
1606
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
1607
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
1608
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number>;
1609
+ msGridRows?: import("csstype").Property.MsGridRows<string | number>;
1610
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
1611
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
1612
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
1613
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number>;
1614
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
1615
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
1616
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
1617
+ msOrder?: import("csstype").Property.Order | undefined;
1618
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
1619
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
1620
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
1621
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
1622
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number>;
1623
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number>;
1624
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number>;
1625
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number>;
1626
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
1627
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
1628
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
1629
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
1630
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
1631
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
1632
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
1633
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
1634
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
1635
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
1636
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
1637
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
1638
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
1639
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
1640
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
1641
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
1642
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
1643
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
1644
+ msTransform?: import("csstype").Property.Transform | undefined;
1645
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number>;
1646
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}>;
1647
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}>;
1648
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1649
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1650
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
1651
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
1652
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
1653
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number>;
1654
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
1655
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
1656
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
1657
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
1658
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
1659
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}>;
1660
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1661
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}>;
1662
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1663
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1664
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
1665
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1666
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1667
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
1668
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
1669
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1670
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1671
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1672
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number>;
1673
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
1674
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
1675
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number>;
1676
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number>;
1677
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number>;
1678
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
1679
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number>;
1680
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number>;
1681
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
1682
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number>;
1683
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
1684
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
1685
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
1686
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
1687
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
1688
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1689
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1690
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number>;
1691
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
1692
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number>;
1693
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
1694
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number>;
1695
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
1696
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
1697
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
1698
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
1699
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1700
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
1701
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number>;
1702
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
1703
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
1704
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
1705
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
1706
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
1707
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
1708
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
1709
+ WebkitLogicalHeight?: import("csstype").Property.BlockSize<string | number>;
1710
+ WebkitLogicalWidth?: import("csstype").Property.InlineSize<string | number>;
1711
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number>;
1712
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number>;
1713
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
1714
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number>;
1715
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
1716
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
1717
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
1718
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number>;
1719
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
1720
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
1721
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
1722
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
1723
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number>;
1724
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number>;
1725
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number>;
1726
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
1727
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
1728
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
1729
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number>;
1730
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number>;
1731
+ WebkitOrder?: import("csstype").Property.Order | undefined;
1732
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
1733
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number>;
1734
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number>;
1735
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number>;
1736
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number>;
1737
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1738
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
1739
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
1740
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number>;
1741
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
1742
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
1743
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1744
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1745
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
1746
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1747
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
1748
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
1749
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
1750
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
1751
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
1752
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1753
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
1754
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number>;
1755
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
1756
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
1757
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
1758
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number>;
1759
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
1760
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}>;
1761
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}>;
1762
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1763
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1764
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
1765
+ WebkitUserSelect?: import("csstype").Property.WebkitUserSelect | undefined;
1766
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
1767
+ MozAnimation?: import("csstype").Property.Animation<string & {}>;
1768
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
1769
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number>;
1770
+ MozColumns?: import("csstype").Property.Columns<string | number>;
1771
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number>;
1772
+ MozTransition?: import("csstype").Property.Transition<string & {}>;
1773
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
1774
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
1775
+ msFlex?: import("csstype").Property.Flex<string | number>;
1776
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
1777
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
1778
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
1779
+ msTransition?: import("csstype").Property.Transition<string & {}>;
1780
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}>;
1781
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number>;
1782
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
1783
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number>;
1784
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number>;
1785
+ WebkitColumns?: import("csstype").Property.Columns<string | number>;
1786
+ WebkitFlex?: import("csstype").Property.Flex<string | number>;
1787
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
1788
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number>;
1789
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
1790
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
1791
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number>;
1792
+ WebkitTransition?: import("csstype").Property.Transition<string & {}>;
1793
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
1794
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
1795
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
1796
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1797
+ boxLines?: import("csstype").Property.BoxLines | undefined;
1798
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1799
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
1800
+ boxPack?: import("csstype").Property.BoxPack | undefined;
1801
+ clip?: import("csstype").Property.Clip | undefined;
1802
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
1803
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number>;
1804
+ gridGap?: import("csstype").Property.GridGap<string | number>;
1805
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number>;
1806
+ imeMode?: import("csstype").Property.ImeMode | undefined;
1807
+ insetArea?: import("csstype").Property.PositionArea | undefined;
1808
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number>;
1809
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number>;
1810
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number>;
1811
+ offsetInline?: import("csstype").Property.InsetInline<string | number>;
1812
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number>;
1813
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number>;
1814
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
1815
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
1816
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
1817
+ positionTryOptions?: import("csstype").Property.PositionTryFallbacks | undefined;
1818
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number>;
1819
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number>;
1820
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
1821
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
1822
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
1823
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
1824
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1825
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1826
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1827
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1828
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
1829
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1830
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1831
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
1832
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
1833
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
1834
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
1835
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1836
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1837
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number>;
1838
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number>;
1839
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number>;
1840
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number>;
1841
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number>;
1842
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number>;
1843
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1844
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1845
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1846
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1847
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1848
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
1849
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
1850
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
1851
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
1852
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
1853
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
1854
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
1855
+ MozOutline?: import("csstype").Property.Outline<string | number>;
1856
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
1857
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1858
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number>;
1859
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
1860
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1861
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1862
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1863
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}>;
1864
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}>;
1865
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1866
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1867
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
1868
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
1869
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
1870
+ OAnimation?: import("csstype").Property.Animation<string & {}>;
1871
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}>;
1872
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1873
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}>;
1874
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1875
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1876
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
1877
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1878
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1879
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number>;
1880
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
1881
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
1882
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number>;
1883
+ OTabSize?: import("csstype").Property.TabSize<string | number>;
1884
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
1885
+ OTransform?: import("csstype").Property.Transform | undefined;
1886
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number>;
1887
+ OTransition?: import("csstype").Property.Transition<string & {}>;
1888
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}>;
1889
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}>;
1890
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1891
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1892
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1893
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1894
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1895
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1896
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
1897
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1898
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1899
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
1900
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
1901
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
1902
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
1903
+ };
1904
+ };
1905
+ export { GitRepositoryUiProvider, createGitRepositoryRouteAdapter, resolveGitRepositorySlotProps, useGitRepositoryClassName, useGitRepositoryDiagnostics, useGitRepositoryRouteAdapter, useGitRepositorySlotProps, useGitRepositoryUi, };
1906
+ export type { GitRepositoryEmptyStateProps, GitRepositoryFrontEndInitialData, GitRepositoryErrorStateProps, GitRepositoryLoadingStateProps, GitRepositoryPageKey, GitRepositoryRouteAdapter, GitRepositoryUiBranding, GitRepositoryUiComponents, GitRepositoryUiContextValue, GitRepositoryUiDiagnostics, GitRepositoryUiFetchEvent, GitRepositoryUiPolicy, GitRepositoryUiProviderProps, GitRepositoryUiSlot, GitRepositoryUiTheme, };
1907
+ //# sourceMappingURL=context.d.ts.map