styled-components 6.0.0-rc.3 → 6.0.0-rc.5

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 (57) hide show
  1. package/dist/constructors/constructWithOptions.d.ts +16 -42
  2. package/dist/constructors/css.d.ts +2 -2
  3. package/dist/constructors/keyframes.d.ts +1 -1
  4. package/dist/constructors/styled.d.ts +524 -6
  5. package/dist/hoc/withTheme.d.ts +1 -1
  6. package/dist/index.d.ts +1 -1
  7. package/dist/models/Keyframes.d.ts +0 -1
  8. package/dist/models/ServerStyleSheet.d.ts +2 -1
  9. package/dist/models/StyledComponent.d.ts +2 -2
  10. package/dist/models/StyledNativeComponent.d.ts +2 -2
  11. package/dist/models/ThemeProvider.d.ts +8 -1
  12. package/dist/native/index.d.ts +28 -29
  13. package/dist/sheet/Sheet.d.ts +0 -2
  14. package/dist/styled-components.browser.cjs.js +1 -1
  15. package/dist/styled-components.browser.cjs.js.map +1 -1
  16. package/dist/styled-components.browser.esm.js +1 -1
  17. package/dist/styled-components.browser.esm.js.map +1 -1
  18. package/dist/styled-components.cjs.js +1 -1
  19. package/dist/styled-components.cjs.js.map +1 -1
  20. package/dist/styled-components.esm.js +1 -1
  21. package/dist/styled-components.esm.js.map +1 -1
  22. package/dist/styled-components.js +93 -38
  23. package/dist/styled-components.js.map +1 -1
  24. package/dist/styled-components.min.js +1 -1
  25. package/dist/styled-components.min.js.map +1 -1
  26. package/dist/test/utils.d.ts +523 -179
  27. package/dist/types.d.ts +48 -54
  28. package/dist/utils/errors.d.ts +1 -0
  29. package/dist/utils/isStyledComponent.d.ts +2 -2
  30. package/dist/utils/joinStrings.d.ts +1 -1
  31. package/dist/utils/setToString.d.ts +17 -0
  32. package/native/dist/constructors/constructWithOptions.d.ts +16 -42
  33. package/native/dist/constructors/css.d.ts +2 -2
  34. package/native/dist/constructors/keyframes.d.ts +1 -1
  35. package/native/dist/constructors/styled.d.ts +524 -6
  36. package/native/dist/hoc/withTheme.d.ts +1 -1
  37. package/native/dist/index.d.ts +1 -1
  38. package/native/dist/models/Keyframes.d.ts +0 -1
  39. package/native/dist/models/ServerStyleSheet.d.ts +2 -1
  40. package/native/dist/models/StyledComponent.d.ts +2 -2
  41. package/native/dist/models/StyledNativeComponent.d.ts +2 -2
  42. package/native/dist/models/ThemeProvider.d.ts +8 -1
  43. package/native/dist/native/index.d.ts +28 -29
  44. package/native/dist/sheet/Sheet.d.ts +0 -2
  45. package/native/dist/styled-components.native.cjs.js +1 -1
  46. package/native/dist/styled-components.native.cjs.js.map +1 -1
  47. package/native/dist/styled-components.native.esm.js +1 -1
  48. package/native/dist/styled-components.native.esm.js.map +1 -1
  49. package/native/dist/test/utils.d.ts +523 -179
  50. package/native/dist/types.d.ts +48 -54
  51. package/native/dist/utils/errors.d.ts +1 -0
  52. package/native/dist/utils/isStyledComponent.d.ts +2 -2
  53. package/native/dist/utils/joinStrings.d.ts +1 -1
  54. package/native/dist/utils/setToString.d.ts +17 -0
  55. package/package.json +8 -3
  56. package/test-utils/index.ts +3 -6
  57. package/dist/tsconfig.tsbuildinfo +0 -1
@@ -1,183 +1,527 @@
1
+ /// <reference types="react" />
1
2
  export declare const seedNextClassnames: (names: string[]) => string[];
2
- export declare const resetStyled: (isServer?: boolean) => {
3
- <Target extends import("../types").AnyStyledComponent<"web">>(tag: Target): import("../constructors/constructWithOptions").Styled<"web", import("../types").StyledComponentInnerComponent<"web", Target>, import("../types").StyledComponentInnerOtherProps<"web", Target>, import("../types").StyledComponentInnerAttrs<"web", Target>, {}>;
4
- <Target_1 extends import("..").WebTarget>(tag: Target_1): import("../constructors/constructWithOptions").Styled<"web", Target_1, {}, never, {}>;
5
- } & {
6
- a: import("../constructors/constructWithOptions").Styled<"web", "a", {}, never, {}>;
7
- abbr: import("../constructors/constructWithOptions").Styled<"web", "abbr", {}, never, {}>;
8
- address: import("../constructors/constructWithOptions").Styled<"web", "address", {}, never, {}>;
9
- area: import("../constructors/constructWithOptions").Styled<"web", "area", {}, never, {}>;
10
- article: import("../constructors/constructWithOptions").Styled<"web", "article", {}, never, {}>;
11
- aside: import("../constructors/constructWithOptions").Styled<"web", "aside", {}, never, {}>;
12
- audio: import("../constructors/constructWithOptions").Styled<"web", "audio", {}, never, {}>;
13
- b: import("../constructors/constructWithOptions").Styled<"web", "b", {}, never, {}>;
14
- base: import("../constructors/constructWithOptions").Styled<"web", "base", {}, never, {}>;
15
- bdi: import("../constructors/constructWithOptions").Styled<"web", "bdi", {}, never, {}>;
16
- bdo: import("../constructors/constructWithOptions").Styled<"web", "bdo", {}, never, {}>;
17
- big: import("../constructors/constructWithOptions").Styled<"web", "big", {}, never, {}>;
18
- blockquote: import("../constructors/constructWithOptions").Styled<"web", "blockquote", {}, never, {}>;
19
- body: import("../constructors/constructWithOptions").Styled<"web", "body", {}, never, {}>;
20
- br: import("../constructors/constructWithOptions").Styled<"web", "br", {}, never, {}>;
21
- button: import("../constructors/constructWithOptions").Styled<"web", "button", {}, never, {}>;
22
- canvas: import("../constructors/constructWithOptions").Styled<"web", "canvas", {}, never, {}>;
23
- caption: import("../constructors/constructWithOptions").Styled<"web", "caption", {}, never, {}>;
24
- cite: import("../constructors/constructWithOptions").Styled<"web", "cite", {}, never, {}>;
25
- code: import("../constructors/constructWithOptions").Styled<"web", "code", {}, never, {}>;
26
- col: import("../constructors/constructWithOptions").Styled<"web", "col", {}, never, {}>;
27
- colgroup: import("../constructors/constructWithOptions").Styled<"web", "colgroup", {}, never, {}>;
28
- data: import("../constructors/constructWithOptions").Styled<"web", "data", {}, never, {}>;
29
- datalist: import("../constructors/constructWithOptions").Styled<"web", "datalist", {}, never, {}>;
30
- dd: import("../constructors/constructWithOptions").Styled<"web", "dd", {}, never, {}>;
31
- del: import("../constructors/constructWithOptions").Styled<"web", "del", {}, never, {}>;
32
- details: import("../constructors/constructWithOptions").Styled<"web", "details", {}, never, {}>;
33
- dfn: import("../constructors/constructWithOptions").Styled<"web", "dfn", {}, never, {}>;
34
- dialog: import("../constructors/constructWithOptions").Styled<"web", "dialog", {}, never, {}>;
35
- div: import("../constructors/constructWithOptions").Styled<"web", "div", {}, never, {}>;
36
- dl: import("../constructors/constructWithOptions").Styled<"web", "dl", {}, never, {}>;
37
- dt: import("../constructors/constructWithOptions").Styled<"web", "dt", {}, never, {}>;
38
- em: import("../constructors/constructWithOptions").Styled<"web", "em", {}, never, {}>;
39
- embed: import("../constructors/constructWithOptions").Styled<"web", "embed", {}, never, {}>;
40
- fieldset: import("../constructors/constructWithOptions").Styled<"web", "fieldset", {}, never, {}>;
41
- figcaption: import("../constructors/constructWithOptions").Styled<"web", "figcaption", {}, never, {}>;
42
- figure: import("../constructors/constructWithOptions").Styled<"web", "figure", {}, never, {}>;
43
- footer: import("../constructors/constructWithOptions").Styled<"web", "footer", {}, never, {}>;
44
- form: import("../constructors/constructWithOptions").Styled<"web", "form", {}, never, {}>;
45
- h1: import("../constructors/constructWithOptions").Styled<"web", "h1", {}, never, {}>;
46
- h2: import("../constructors/constructWithOptions").Styled<"web", "h2", {}, never, {}>;
47
- h3: import("../constructors/constructWithOptions").Styled<"web", "h3", {}, never, {}>;
48
- h4: import("../constructors/constructWithOptions").Styled<"web", "h4", {}, never, {}>;
49
- h5: import("../constructors/constructWithOptions").Styled<"web", "h5", {}, never, {}>;
50
- h6: import("../constructors/constructWithOptions").Styled<"web", "h6", {}, never, {}>;
51
- head: import("../constructors/constructWithOptions").Styled<"web", "head", {}, never, {}>;
52
- header: import("../constructors/constructWithOptions").Styled<"web", "header", {}, never, {}>;
53
- hgroup: import("../constructors/constructWithOptions").Styled<"web", "hgroup", {}, never, {}>;
54
- hr: import("../constructors/constructWithOptions").Styled<"web", "hr", {}, never, {}>;
55
- html: import("../constructors/constructWithOptions").Styled<"web", "html", {}, never, {}>;
56
- i: import("../constructors/constructWithOptions").Styled<"web", "i", {}, never, {}>;
57
- iframe: import("../constructors/constructWithOptions").Styled<"web", "iframe", {}, never, {}>;
58
- img: import("../constructors/constructWithOptions").Styled<"web", "img", {}, never, {}>;
59
- input: import("../constructors/constructWithOptions").Styled<"web", "input", {}, never, {}>;
60
- ins: import("../constructors/constructWithOptions").Styled<"web", "ins", {}, never, {}>;
61
- kbd: import("../constructors/constructWithOptions").Styled<"web", "kbd", {}, never, {}>;
62
- keygen: import("../constructors/constructWithOptions").Styled<"web", "keygen", {}, never, {}>;
63
- label: import("../constructors/constructWithOptions").Styled<"web", "label", {}, never, {}>;
64
- legend: import("../constructors/constructWithOptions").Styled<"web", "legend", {}, never, {}>;
65
- li: import("../constructors/constructWithOptions").Styled<"web", "li", {}, never, {}>;
66
- link: import("../constructors/constructWithOptions").Styled<"web", "link", {}, never, {}>;
67
- main: import("../constructors/constructWithOptions").Styled<"web", "main", {}, never, {}>;
68
- map: import("../constructors/constructWithOptions").Styled<"web", "map", {}, never, {}>;
69
- mark: import("../constructors/constructWithOptions").Styled<"web", "mark", {}, never, {}>;
70
- menu: import("../constructors/constructWithOptions").Styled<"web", "menu", {}, never, {}>;
71
- menuitem: import("../constructors/constructWithOptions").Styled<"web", "menuitem", {}, never, {}>;
72
- meta: import("../constructors/constructWithOptions").Styled<"web", "meta", {}, never, {}>;
73
- meter: import("../constructors/constructWithOptions").Styled<"web", "meter", {}, never, {}>;
74
- nav: import("../constructors/constructWithOptions").Styled<"web", "nav", {}, never, {}>;
75
- noindex: import("../constructors/constructWithOptions").Styled<"web", "noindex", {}, never, {}>;
76
- noscript: import("../constructors/constructWithOptions").Styled<"web", "noscript", {}, never, {}>;
77
- object: import("../constructors/constructWithOptions").Styled<"web", "object", {}, never, {}>;
78
- ol: import("../constructors/constructWithOptions").Styled<"web", "ol", {}, never, {}>;
79
- optgroup: import("../constructors/constructWithOptions").Styled<"web", "optgroup", {}, never, {}>;
80
- option: import("../constructors/constructWithOptions").Styled<"web", "option", {}, never, {}>;
81
- output: import("../constructors/constructWithOptions").Styled<"web", "output", {}, never, {}>;
82
- p: import("../constructors/constructWithOptions").Styled<"web", "p", {}, never, {}>;
83
- param: import("../constructors/constructWithOptions").Styled<"web", "param", {}, never, {}>;
84
- picture: import("../constructors/constructWithOptions").Styled<"web", "picture", {}, never, {}>;
85
- pre: import("../constructors/constructWithOptions").Styled<"web", "pre", {}, never, {}>;
86
- progress: import("../constructors/constructWithOptions").Styled<"web", "progress", {}, never, {}>;
87
- q: import("../constructors/constructWithOptions").Styled<"web", "q", {}, never, {}>;
88
- rp: import("../constructors/constructWithOptions").Styled<"web", "rp", {}, never, {}>;
89
- rt: import("../constructors/constructWithOptions").Styled<"web", "rt", {}, never, {}>;
90
- ruby: import("../constructors/constructWithOptions").Styled<"web", "ruby", {}, never, {}>;
91
- s: import("../constructors/constructWithOptions").Styled<"web", "s", {}, never, {}>;
92
- samp: import("../constructors/constructWithOptions").Styled<"web", "samp", {}, never, {}>;
93
- slot: import("../constructors/constructWithOptions").Styled<"web", "slot", {}, never, {}>;
94
- script: import("../constructors/constructWithOptions").Styled<"web", "script", {}, never, {}>;
95
- section: import("../constructors/constructWithOptions").Styled<"web", "section", {}, never, {}>;
96
- select: import("../constructors/constructWithOptions").Styled<"web", "select", {}, never, {}>;
97
- small: import("../constructors/constructWithOptions").Styled<"web", "small", {}, never, {}>;
98
- source: import("../constructors/constructWithOptions").Styled<"web", "source", {}, never, {}>;
99
- span: import("../constructors/constructWithOptions").Styled<"web", "span", {}, never, {}>;
100
- strong: import("../constructors/constructWithOptions").Styled<"web", "strong", {}, never, {}>;
101
- style: import("../constructors/constructWithOptions").Styled<"web", "style", {}, never, {}>;
102
- sub: import("../constructors/constructWithOptions").Styled<"web", "sub", {}, never, {}>;
103
- summary: import("../constructors/constructWithOptions").Styled<"web", "summary", {}, never, {}>;
104
- sup: import("../constructors/constructWithOptions").Styled<"web", "sup", {}, never, {}>;
105
- table: import("../constructors/constructWithOptions").Styled<"web", "table", {}, never, {}>;
106
- template: import("../constructors/constructWithOptions").Styled<"web", "template", {}, never, {}>;
107
- tbody: import("../constructors/constructWithOptions").Styled<"web", "tbody", {}, never, {}>;
108
- td: import("../constructors/constructWithOptions").Styled<"web", "td", {}, never, {}>;
109
- textarea: import("../constructors/constructWithOptions").Styled<"web", "textarea", {}, never, {}>;
110
- tfoot: import("../constructors/constructWithOptions").Styled<"web", "tfoot", {}, never, {}>;
111
- th: import("../constructors/constructWithOptions").Styled<"web", "th", {}, never, {}>;
112
- thead: import("../constructors/constructWithOptions").Styled<"web", "thead", {}, never, {}>;
113
- time: import("../constructors/constructWithOptions").Styled<"web", "time", {}, never, {}>;
114
- title: import("../constructors/constructWithOptions").Styled<"web", "title", {}, never, {}>;
115
- tr: import("../constructors/constructWithOptions").Styled<"web", "tr", {}, never, {}>;
116
- track: import("../constructors/constructWithOptions").Styled<"web", "track", {}, never, {}>;
117
- u: import("../constructors/constructWithOptions").Styled<"web", "u", {}, never, {}>;
118
- ul: import("../constructors/constructWithOptions").Styled<"web", "ul", {}, never, {}>;
119
- var: import("../constructors/constructWithOptions").Styled<"web", "var", {}, never, {}>;
120
- video: import("../constructors/constructWithOptions").Styled<"web", "video", {}, never, {}>;
121
- wbr: import("../constructors/constructWithOptions").Styled<"web", "wbr", {}, never, {}>;
122
- webview: import("../constructors/constructWithOptions").Styled<"web", "webview", {}, never, {}>;
123
- svg: import("../constructors/constructWithOptions").Styled<"web", "svg", {}, never, {}>;
124
- animate: import("../constructors/constructWithOptions").Styled<"web", "animate", {}, never, {}>;
125
- animateMotion: import("../constructors/constructWithOptions").Styled<"web", "animateMotion", {}, never, {}>;
126
- animateTransform: import("../constructors/constructWithOptions").Styled<"web", "animateTransform", {}, never, {}>;
127
- circle: import("../constructors/constructWithOptions").Styled<"web", "circle", {}, never, {}>;
128
- clipPath: import("../constructors/constructWithOptions").Styled<"web", "clipPath", {}, never, {}>;
129
- defs: import("../constructors/constructWithOptions").Styled<"web", "defs", {}, never, {}>;
130
- desc: import("../constructors/constructWithOptions").Styled<"web", "desc", {}, never, {}>;
131
- ellipse: import("../constructors/constructWithOptions").Styled<"web", "ellipse", {}, never, {}>;
132
- feBlend: import("../constructors/constructWithOptions").Styled<"web", "feBlend", {}, never, {}>;
133
- feColorMatrix: import("../constructors/constructWithOptions").Styled<"web", "feColorMatrix", {}, never, {}>;
134
- feComponentTransfer: import("../constructors/constructWithOptions").Styled<"web", "feComponentTransfer", {}, never, {}>;
135
- feComposite: import("../constructors/constructWithOptions").Styled<"web", "feComposite", {}, never, {}>;
136
- feConvolveMatrix: import("../constructors/constructWithOptions").Styled<"web", "feConvolveMatrix", {}, never, {}>;
137
- feDiffuseLighting: import("../constructors/constructWithOptions").Styled<"web", "feDiffuseLighting", {}, never, {}>;
138
- feDisplacementMap: import("../constructors/constructWithOptions").Styled<"web", "feDisplacementMap", {}, never, {}>;
139
- feDistantLight: import("../constructors/constructWithOptions").Styled<"web", "feDistantLight", {}, never, {}>;
140
- feDropShadow: import("../constructors/constructWithOptions").Styled<"web", "feDropShadow", {}, never, {}>;
141
- feFlood: import("../constructors/constructWithOptions").Styled<"web", "feFlood", {}, never, {}>;
142
- feFuncA: import("../constructors/constructWithOptions").Styled<"web", "feFuncA", {}, never, {}>;
143
- feFuncB: import("../constructors/constructWithOptions").Styled<"web", "feFuncB", {}, never, {}>;
144
- feFuncG: import("../constructors/constructWithOptions").Styled<"web", "feFuncG", {}, never, {}>;
145
- feFuncR: import("../constructors/constructWithOptions").Styled<"web", "feFuncR", {}, never, {}>;
146
- feGaussianBlur: import("../constructors/constructWithOptions").Styled<"web", "feGaussianBlur", {}, never, {}>;
147
- feImage: import("../constructors/constructWithOptions").Styled<"web", "feImage", {}, never, {}>;
148
- feMerge: import("../constructors/constructWithOptions").Styled<"web", "feMerge", {}, never, {}>;
149
- feMergeNode: import("../constructors/constructWithOptions").Styled<"web", "feMergeNode", {}, never, {}>;
150
- feMorphology: import("../constructors/constructWithOptions").Styled<"web", "feMorphology", {}, never, {}>;
151
- feOffset: import("../constructors/constructWithOptions").Styled<"web", "feOffset", {}, never, {}>;
152
- fePointLight: import("../constructors/constructWithOptions").Styled<"web", "fePointLight", {}, never, {}>;
153
- feSpecularLighting: import("../constructors/constructWithOptions").Styled<"web", "feSpecularLighting", {}, never, {}>;
154
- feSpotLight: import("../constructors/constructWithOptions").Styled<"web", "feSpotLight", {}, never, {}>;
155
- feTile: import("../constructors/constructWithOptions").Styled<"web", "feTile", {}, never, {}>;
156
- feTurbulence: import("../constructors/constructWithOptions").Styled<"web", "feTurbulence", {}, never, {}>;
157
- filter: import("../constructors/constructWithOptions").Styled<"web", "filter", {}, never, {}>;
158
- foreignObject: import("../constructors/constructWithOptions").Styled<"web", "foreignObject", {}, never, {}>;
159
- g: import("../constructors/constructWithOptions").Styled<"web", "g", {}, never, {}>;
160
- image: import("../constructors/constructWithOptions").Styled<"web", "image", {}, never, {}>;
161
- line: import("../constructors/constructWithOptions").Styled<"web", "line", {}, never, {}>;
162
- linearGradient: import("../constructors/constructWithOptions").Styled<"web", "linearGradient", {}, never, {}>;
163
- marker: import("../constructors/constructWithOptions").Styled<"web", "marker", {}, never, {}>;
164
- mask: import("../constructors/constructWithOptions").Styled<"web", "mask", {}, never, {}>;
165
- metadata: import("../constructors/constructWithOptions").Styled<"web", "metadata", {}, never, {}>;
166
- mpath: import("../constructors/constructWithOptions").Styled<"web", "mpath", {}, never, {}>;
167
- path: import("../constructors/constructWithOptions").Styled<"web", "path", {}, never, {}>;
168
- pattern: import("../constructors/constructWithOptions").Styled<"web", "pattern", {}, never, {}>;
169
- polygon: import("../constructors/constructWithOptions").Styled<"web", "polygon", {}, never, {}>;
170
- polyline: import("../constructors/constructWithOptions").Styled<"web", "polyline", {}, never, {}>;
171
- radialGradient: import("../constructors/constructWithOptions").Styled<"web", "radialGradient", {}, never, {}>;
172
- rect: import("../constructors/constructWithOptions").Styled<"web", "rect", {}, never, {}>;
173
- stop: import("../constructors/constructWithOptions").Styled<"web", "stop", {}, never, {}>;
174
- switch: import("../constructors/constructWithOptions").Styled<"web", "switch", {}, never, {}>;
175
- symbol: import("../constructors/constructWithOptions").Styled<"web", "symbol", {}, never, {}>;
176
- text: import("../constructors/constructWithOptions").Styled<"web", "text", {}, never, {}>;
177
- textPath: import("../constructors/constructWithOptions").Styled<"web", "textPath", {}, never, {}>;
178
- tspan: import("../constructors/constructWithOptions").Styled<"web", "tspan", {}, never, {}>;
179
- use: import("../constructors/constructWithOptions").Styled<"web", "use", {}, never, {}>;
180
- view: import("../constructors/constructWithOptions").Styled<"web", "view", {}, never, {}>;
3
+ export declare const resetStyled: (isServer?: boolean) => (<Target extends import("..").WebTarget>(tag: Target) => import("../constructors/constructWithOptions").Styled<"web", Target, Target extends import("../types").KnownTarget ? import("react").ComponentPropsWithRef<Target> : import("../types").BaseObject, import("../types").BaseObject>) & {
4
+ a: import("../constructors/constructWithOptions").Styled<"web", "a", Omit<import("react").DetailedHTMLProps<import("react").AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref"> & {
5
+ ref?: ((instance: HTMLAnchorElement | null) => void) | import("react").RefObject<HTMLAnchorElement> | null | undefined;
6
+ }, import("../types").BaseObject>;
7
+ abbr: import("../constructors/constructWithOptions").Styled<"web", "abbr", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
8
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
9
+ }, import("../types").BaseObject>;
10
+ address: import("../constructors/constructWithOptions").Styled<"web", "address", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
11
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
12
+ }, import("../types").BaseObject>;
13
+ area: import("../constructors/constructWithOptions").Styled<"web", "area", Omit<import("react").DetailedHTMLProps<import("react").AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement>, "ref"> & {
14
+ ref?: ((instance: HTMLAreaElement | null) => void) | import("react").RefObject<HTMLAreaElement> | null | undefined;
15
+ }, import("../types").BaseObject>;
16
+ article: import("../constructors/constructWithOptions").Styled<"web", "article", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
17
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
18
+ }, import("../types").BaseObject>;
19
+ aside: import("../constructors/constructWithOptions").Styled<"web", "aside", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
20
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
21
+ }, import("../types").BaseObject>;
22
+ audio: import("../constructors/constructWithOptions").Styled<"web", "audio", Omit<import("react").DetailedHTMLProps<import("react").AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>, "ref"> & {
23
+ ref?: ((instance: HTMLAudioElement | null) => void) | import("react").RefObject<HTMLAudioElement> | null | undefined;
24
+ }, import("../types").BaseObject>;
25
+ b: import("../constructors/constructWithOptions").Styled<"web", "b", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
26
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
27
+ }, import("../types").BaseObject>;
28
+ base: import("../constructors/constructWithOptions").Styled<"web", "base", Omit<import("react").DetailedHTMLProps<import("react").BaseHTMLAttributes<HTMLBaseElement>, HTMLBaseElement>, "ref"> & {
29
+ ref?: ((instance: HTMLBaseElement | null) => void) | import("react").RefObject<HTMLBaseElement> | null | undefined;
30
+ }, import("../types").BaseObject>;
31
+ bdi: import("../constructors/constructWithOptions").Styled<"web", "bdi", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
32
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
33
+ }, import("../types").BaseObject>;
34
+ bdo: import("../constructors/constructWithOptions").Styled<"web", "bdo", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
35
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
36
+ }, import("../types").BaseObject>;
37
+ big: import("../constructors/constructWithOptions").Styled<"web", "big", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
38
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
39
+ }, import("../types").BaseObject>;
40
+ blockquote: import("../constructors/constructWithOptions").Styled<"web", "blockquote", Omit<import("react").DetailedHTMLProps<import("react").BlockquoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>, "ref"> & {
41
+ ref?: ((instance: HTMLQuoteElement | null) => void) | import("react").RefObject<HTMLQuoteElement> | null | undefined;
42
+ }, import("../types").BaseObject>;
43
+ body: import("../constructors/constructWithOptions").Styled<"web", "body", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>, "ref"> & {
44
+ ref?: ((instance: HTMLBodyElement | null) => void) | import("react").RefObject<HTMLBodyElement> | null | undefined;
45
+ }, import("../types").BaseObject>;
46
+ br: import("../constructors/constructWithOptions").Styled<"web", "br", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLBRElement>, HTMLBRElement>, "ref"> & {
47
+ ref?: ((instance: HTMLBRElement | null) => void) | import("react").RefObject<HTMLBRElement> | null | undefined;
48
+ }, import("../types").BaseObject>;
49
+ button: import("../constructors/constructWithOptions").Styled<"web", "button", Omit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
50
+ ref?: ((instance: HTMLButtonElement | null) => void) | import("react").RefObject<HTMLButtonElement> | null | undefined;
51
+ }, import("../types").BaseObject>;
52
+ canvas: import("../constructors/constructWithOptions").Styled<"web", "canvas", Omit<import("react").DetailedHTMLProps<import("react").CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>, "ref"> & {
53
+ ref?: ((instance: HTMLCanvasElement | null) => void) | import("react").RefObject<HTMLCanvasElement> | null | undefined;
54
+ }, import("../types").BaseObject>;
55
+ caption: import("../constructors/constructWithOptions").Styled<"web", "caption", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
56
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
57
+ }, import("../types").BaseObject>;
58
+ cite: import("../constructors/constructWithOptions").Styled<"web", "cite", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
59
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
60
+ }, import("../types").BaseObject>;
61
+ code: import("../constructors/constructWithOptions").Styled<"web", "code", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
62
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
63
+ }, import("../types").BaseObject>;
64
+ col: import("../constructors/constructWithOptions").Styled<"web", "col", Omit<import("react").DetailedHTMLProps<import("react").ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>, "ref"> & {
65
+ ref?: ((instance: HTMLTableColElement | null) => void) | import("react").RefObject<HTMLTableColElement> | null | undefined;
66
+ }, import("../types").BaseObject>;
67
+ colgroup: import("../constructors/constructWithOptions").Styled<"web", "colgroup", Omit<import("react").DetailedHTMLProps<import("react").ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>, "ref"> & {
68
+ ref?: ((instance: HTMLTableColElement | null) => void) | import("react").RefObject<HTMLTableColElement> | null | undefined;
69
+ }, import("../types").BaseObject>;
70
+ data: import("../constructors/constructWithOptions").Styled<"web", "data", Omit<import("react").DetailedHTMLProps<import("react").DataHTMLAttributes<HTMLDataElement>, HTMLDataElement>, "ref"> & {
71
+ ref?: ((instance: HTMLDataElement | null) => void) | import("react").RefObject<HTMLDataElement> | null | undefined;
72
+ }, import("../types").BaseObject>;
73
+ datalist: import("../constructors/constructWithOptions").Styled<"web", "datalist", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDataListElement>, HTMLDataListElement>, "ref"> & {
74
+ ref?: ((instance: HTMLDataListElement | null) => void) | import("react").RefObject<HTMLDataListElement> | null | undefined;
75
+ }, import("../types").BaseObject>;
76
+ dd: import("../constructors/constructWithOptions").Styled<"web", "dd", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
77
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
78
+ }, import("../types").BaseObject>;
79
+ del: import("../constructors/constructWithOptions").Styled<"web", "del", Omit<import("react").DetailedHTMLProps<import("react").DelHTMLAttributes<HTMLModElement>, HTMLModElement>, "ref"> & {
80
+ ref?: ((instance: HTMLModElement | null) => void) | import("react").RefObject<HTMLModElement> | null | undefined;
81
+ }, import("../types").BaseObject>;
82
+ details: import("../constructors/constructWithOptions").Styled<"web", "details", Omit<import("react").DetailedHTMLProps<import("react").DetailsHTMLAttributes<HTMLDetailsElement>, HTMLDetailsElement>, "ref"> & {
83
+ ref?: ((instance: HTMLDetailsElement | null) => void) | import("react").RefObject<HTMLDetailsElement> | null | undefined;
84
+ }, import("../types").BaseObject>;
85
+ dfn: import("../constructors/constructWithOptions").Styled<"web", "dfn", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
86
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
87
+ }, import("../types").BaseObject>;
88
+ dialog: import("../constructors/constructWithOptions").Styled<"web", "dialog", Omit<import("react").DetailedHTMLProps<import("react").DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>, "ref"> & {
89
+ ref?: ((instance: HTMLDialogElement | null) => void) | import("react").RefObject<HTMLDialogElement> | null | undefined;
90
+ }, import("../types").BaseObject>;
91
+ div: import("../constructors/constructWithOptions").Styled<"web", "div", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
92
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
93
+ }, import("../types").BaseObject>;
94
+ dl: import("../constructors/constructWithOptions").Styled<"web", "dl", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDListElement>, HTMLDListElement>, "ref"> & {
95
+ ref?: ((instance: HTMLDListElement | null) => void) | import("react").RefObject<HTMLDListElement> | null | undefined;
96
+ }, import("../types").BaseObject>;
97
+ dt: import("../constructors/constructWithOptions").Styled<"web", "dt", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
98
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
99
+ }, import("../types").BaseObject>;
100
+ em: import("../constructors/constructWithOptions").Styled<"web", "em", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
101
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
102
+ }, import("../types").BaseObject>;
103
+ embed: import("../constructors/constructWithOptions").Styled<"web", "embed", Omit<import("react").DetailedHTMLProps<import("react").EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement>, "ref"> & {
104
+ ref?: ((instance: HTMLEmbedElement | null) => void) | import("react").RefObject<HTMLEmbedElement> | null | undefined;
105
+ }, import("../types").BaseObject>;
106
+ fieldset: import("../constructors/constructWithOptions").Styled<"web", "fieldset", Omit<import("react").DetailedHTMLProps<import("react").FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement>, "ref"> & {
107
+ ref?: ((instance: HTMLFieldSetElement | null) => void) | import("react").RefObject<HTMLFieldSetElement> | null | undefined;
108
+ }, import("../types").BaseObject>;
109
+ figcaption: import("../constructors/constructWithOptions").Styled<"web", "figcaption", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
110
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
111
+ }, import("../types").BaseObject>;
112
+ figure: import("../constructors/constructWithOptions").Styled<"web", "figure", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
113
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
114
+ }, import("../types").BaseObject>;
115
+ footer: import("../constructors/constructWithOptions").Styled<"web", "footer", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
116
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
117
+ }, import("../types").BaseObject>;
118
+ form: import("../constructors/constructWithOptions").Styled<"web", "form", Omit<import("react").DetailedHTMLProps<import("react").FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>, "ref"> & {
119
+ ref?: ((instance: HTMLFormElement | null) => void) | import("react").RefObject<HTMLFormElement> | null | undefined;
120
+ }, import("../types").BaseObject>;
121
+ h1: import("../constructors/constructWithOptions").Styled<"web", "h1", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref"> & {
122
+ ref?: ((instance: HTMLHeadingElement | null) => void) | import("react").RefObject<HTMLHeadingElement> | null | undefined;
123
+ }, import("../types").BaseObject>;
124
+ h2: import("../constructors/constructWithOptions").Styled<"web", "h2", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref"> & {
125
+ ref?: ((instance: HTMLHeadingElement | null) => void) | import("react").RefObject<HTMLHeadingElement> | null | undefined;
126
+ }, import("../types").BaseObject>;
127
+ h3: import("../constructors/constructWithOptions").Styled<"web", "h3", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref"> & {
128
+ ref?: ((instance: HTMLHeadingElement | null) => void) | import("react").RefObject<HTMLHeadingElement> | null | undefined;
129
+ }, import("../types").BaseObject>;
130
+ h4: import("../constructors/constructWithOptions").Styled<"web", "h4", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref"> & {
131
+ ref?: ((instance: HTMLHeadingElement | null) => void) | import("react").RefObject<HTMLHeadingElement> | null | undefined;
132
+ }, import("../types").BaseObject>;
133
+ h5: import("../constructors/constructWithOptions").Styled<"web", "h5", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref"> & {
134
+ ref?: ((instance: HTMLHeadingElement | null) => void) | import("react").RefObject<HTMLHeadingElement> | null | undefined;
135
+ }, import("../types").BaseObject>;
136
+ h6: import("../constructors/constructWithOptions").Styled<"web", "h6", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref"> & {
137
+ ref?: ((instance: HTMLHeadingElement | null) => void) | import("react").RefObject<HTMLHeadingElement> | null | undefined;
138
+ }, import("../types").BaseObject>;
139
+ head: import("../constructors/constructWithOptions").Styled<"web", "head", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadElement>, HTMLHeadElement>, "ref"> & {
140
+ ref?: ((instance: HTMLHeadElement | null) => void) | import("react").RefObject<HTMLHeadElement> | null | undefined;
141
+ }, import("../types").BaseObject>;
142
+ header: import("../constructors/constructWithOptions").Styled<"web", "header", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
143
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
144
+ }, import("../types").BaseObject>;
145
+ hgroup: import("../constructors/constructWithOptions").Styled<"web", "hgroup", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
146
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
147
+ }, import("../types").BaseObject>;
148
+ hr: import("../constructors/constructWithOptions").Styled<"web", "hr", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHRElement>, HTMLHRElement>, "ref"> & {
149
+ ref?: ((instance: HTMLHRElement | null) => void) | import("react").RefObject<HTMLHRElement> | null | undefined;
150
+ }, import("../types").BaseObject>;
151
+ html: import("../constructors/constructWithOptions").Styled<"web", "html", Omit<import("react").DetailedHTMLProps<import("react").HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>, "ref"> & {
152
+ ref?: ((instance: HTMLHtmlElement | null) => void) | import("react").RefObject<HTMLHtmlElement> | null | undefined;
153
+ }, import("../types").BaseObject>;
154
+ i: import("../constructors/constructWithOptions").Styled<"web", "i", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
155
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
156
+ }, import("../types").BaseObject>;
157
+ iframe: import("../constructors/constructWithOptions").Styled<"web", "iframe", Omit<import("react").DetailedHTMLProps<import("react").IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement>, "ref"> & {
158
+ ref?: ((instance: HTMLIFrameElement | null) => void) | import("react").RefObject<HTMLIFrameElement> | null | undefined;
159
+ }, import("../types").BaseObject>;
160
+ img: import("../constructors/constructWithOptions").Styled<"web", "img", Omit<import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, "ref"> & {
161
+ ref?: ((instance: HTMLImageElement | null) => void) | import("react").RefObject<HTMLImageElement> | null | undefined;
162
+ }, import("../types").BaseObject>;
163
+ input: import("../constructors/constructWithOptions").Styled<"web", "input", Omit<import("react").DetailedHTMLProps<import("react").InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & {
164
+ ref?: ((instance: HTMLInputElement | null) => void) | import("react").RefObject<HTMLInputElement> | null | undefined;
165
+ }, import("../types").BaseObject>;
166
+ ins: import("../constructors/constructWithOptions").Styled<"web", "ins", Omit<import("react").DetailedHTMLProps<import("react").InsHTMLAttributes<HTMLModElement>, HTMLModElement>, "ref"> & {
167
+ ref?: ((instance: HTMLModElement | null) => void) | import("react").RefObject<HTMLModElement> | null | undefined;
168
+ }, import("../types").BaseObject>;
169
+ kbd: import("../constructors/constructWithOptions").Styled<"web", "kbd", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
170
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
171
+ }, import("../types").BaseObject>;
172
+ keygen: import("../constructors/constructWithOptions").Styled<"web", "keygen", Omit<import("react").DetailedHTMLProps<import("react").KeygenHTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
173
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
174
+ }, import("../types").BaseObject>;
175
+ label: import("../constructors/constructWithOptions").Styled<"web", "label", Omit<import("react").DetailedHTMLProps<import("react").LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, "ref"> & {
176
+ ref?: ((instance: HTMLLabelElement | null) => void) | import("react").RefObject<HTMLLabelElement> | null | undefined;
177
+ }, import("../types").BaseObject>;
178
+ legend: import("../constructors/constructWithOptions").Styled<"web", "legend", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>, "ref"> & {
179
+ ref?: ((instance: HTMLLegendElement | null) => void) | import("react").RefObject<HTMLLegendElement> | null | undefined;
180
+ }, import("../types").BaseObject>;
181
+ li: import("../constructors/constructWithOptions").Styled<"web", "li", Omit<import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & {
182
+ ref?: ((instance: HTMLLIElement | null) => void) | import("react").RefObject<HTMLLIElement> | null | undefined;
183
+ }, import("../types").BaseObject>;
184
+ link: import("../constructors/constructWithOptions").Styled<"web", "link", Omit<import("react").DetailedHTMLProps<import("react").LinkHTMLAttributes<HTMLLinkElement>, HTMLLinkElement>, "ref"> & {
185
+ ref?: ((instance: HTMLLinkElement | null) => void) | import("react").RefObject<HTMLLinkElement> | null | undefined;
186
+ }, import("../types").BaseObject>;
187
+ main: import("../constructors/constructWithOptions").Styled<"web", "main", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
188
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
189
+ }, import("../types").BaseObject>;
190
+ map: import("../constructors/constructWithOptions").Styled<"web", "map", Omit<import("react").DetailedHTMLProps<import("react").MapHTMLAttributes<HTMLMapElement>, HTMLMapElement>, "ref"> & {
191
+ ref?: ((instance: HTMLMapElement | null) => void) | import("react").RefObject<HTMLMapElement> | null | undefined;
192
+ }, import("../types").BaseObject>;
193
+ mark: import("../constructors/constructWithOptions").Styled<"web", "mark", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
194
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
195
+ }, import("../types").BaseObject>;
196
+ menu: import("../constructors/constructWithOptions").Styled<"web", "menu", Omit<import("react").DetailedHTMLProps<import("react").MenuHTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
197
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
198
+ }, import("../types").BaseObject>;
199
+ menuitem: import("../constructors/constructWithOptions").Styled<"web", "menuitem", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
200
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
201
+ }, import("../types").BaseObject>;
202
+ meta: import("../constructors/constructWithOptions").Styled<"web", "meta", Omit<import("react").DetailedHTMLProps<import("react").MetaHTMLAttributes<HTMLMetaElement>, HTMLMetaElement>, "ref"> & {
203
+ ref?: ((instance: HTMLMetaElement | null) => void) | import("react").RefObject<HTMLMetaElement> | null | undefined;
204
+ }, import("../types").BaseObject>;
205
+ meter: import("../constructors/constructWithOptions").Styled<"web", "meter", Omit<import("react").DetailedHTMLProps<import("react").MeterHTMLAttributes<HTMLMeterElement>, HTMLMeterElement>, "ref"> & {
206
+ ref?: ((instance: HTMLMeterElement | null) => void) | import("react").RefObject<HTMLMeterElement> | null | undefined;
207
+ }, import("../types").BaseObject>;
208
+ nav: import("../constructors/constructWithOptions").Styled<"web", "nav", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
209
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
210
+ }, import("../types").BaseObject>;
211
+ noindex: import("../constructors/constructWithOptions").Styled<"web", "noindex", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
212
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
213
+ }, import("../types").BaseObject>;
214
+ noscript: import("../constructors/constructWithOptions").Styled<"web", "noscript", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
215
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
216
+ }, import("../types").BaseObject>;
217
+ object: import("../constructors/constructWithOptions").Styled<"web", "object", import("../types").BaseObject, import("../types").BaseObject>;
218
+ ol: import("../constructors/constructWithOptions").Styled<"web", "ol", Omit<import("react").DetailedHTMLProps<import("react").OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>, "ref"> & {
219
+ ref?: ((instance: HTMLOListElement | null) => void) | import("react").RefObject<HTMLOListElement> | null | undefined;
220
+ }, import("../types").BaseObject>;
221
+ optgroup: import("../constructors/constructWithOptions").Styled<"web", "optgroup", Omit<import("react").DetailedHTMLProps<import("react").OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement>, "ref"> & {
222
+ ref?: ((instance: HTMLOptGroupElement | null) => void) | import("react").RefObject<HTMLOptGroupElement> | null | undefined;
223
+ }, import("../types").BaseObject>;
224
+ option: import("../constructors/constructWithOptions").Styled<"web", "option", Omit<import("react").DetailedHTMLProps<import("react").OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement>, "ref"> & {
225
+ ref?: ((instance: HTMLOptionElement | null) => void) | import("react").RefObject<HTMLOptionElement> | null | undefined;
226
+ }, import("../types").BaseObject>;
227
+ output: import("../constructors/constructWithOptions").Styled<"web", "output", Omit<import("react").DetailedHTMLProps<import("react").OutputHTMLAttributes<HTMLOutputElement>, HTMLOutputElement>, "ref"> & {
228
+ ref?: ((instance: HTMLOutputElement | null) => void) | import("react").RefObject<HTMLOutputElement> | null | undefined;
229
+ }, import("../types").BaseObject>;
230
+ p: import("../constructors/constructWithOptions").Styled<"web", "p", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref"> & {
231
+ ref?: ((instance: HTMLParagraphElement | null) => void) | import("react").RefObject<HTMLParagraphElement> | null | undefined;
232
+ }, import("../types").BaseObject>;
233
+ param: import("../constructors/constructWithOptions").Styled<"web", "param", Omit<import("react").DetailedHTMLProps<import("react").ParamHTMLAttributes<HTMLParamElement>, HTMLParamElement>, "ref"> & {
234
+ ref?: ((instance: HTMLParamElement | null) => void) | import("react").RefObject<HTMLParamElement> | null | undefined;
235
+ }, import("../types").BaseObject>;
236
+ picture: import("../constructors/constructWithOptions").Styled<"web", "picture", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
237
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
238
+ }, import("../types").BaseObject>;
239
+ pre: import("../constructors/constructWithOptions").Styled<"web", "pre", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLPreElement>, HTMLPreElement>, "ref"> & {
240
+ ref?: ((instance: HTMLPreElement | null) => void) | import("react").RefObject<HTMLPreElement> | null | undefined;
241
+ }, import("../types").BaseObject>;
242
+ progress: import("../constructors/constructWithOptions").Styled<"web", "progress", Omit<import("react").DetailedHTMLProps<import("react").ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement>, "ref"> & {
243
+ ref?: ((instance: HTMLProgressElement | null) => void) | import("react").RefObject<HTMLProgressElement> | null | undefined;
244
+ }, import("../types").BaseObject>;
245
+ q: import("../constructors/constructWithOptions").Styled<"web", "q", Omit<import("react").DetailedHTMLProps<import("react").QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>, "ref"> & {
246
+ ref?: ((instance: HTMLQuoteElement | null) => void) | import("react").RefObject<HTMLQuoteElement> | null | undefined;
247
+ }, import("../types").BaseObject>;
248
+ rp: import("../constructors/constructWithOptions").Styled<"web", "rp", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
249
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
250
+ }, import("../types").BaseObject>;
251
+ rt: import("../constructors/constructWithOptions").Styled<"web", "rt", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
252
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
253
+ }, import("../types").BaseObject>;
254
+ ruby: import("../constructors/constructWithOptions").Styled<"web", "ruby", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
255
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
256
+ }, import("../types").BaseObject>;
257
+ s: import("../constructors/constructWithOptions").Styled<"web", "s", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
258
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
259
+ }, import("../types").BaseObject>;
260
+ samp: import("../constructors/constructWithOptions").Styled<"web", "samp", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
261
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
262
+ }, import("../types").BaseObject>;
263
+ slot: import("../constructors/constructWithOptions").Styled<"web", "slot", Omit<import("react").DetailedHTMLProps<import("react").SlotHTMLAttributes<HTMLSlotElement>, HTMLSlotElement>, "ref"> & {
264
+ ref?: ((instance: HTMLSlotElement | null) => void) | import("react").RefObject<HTMLSlotElement> | null | undefined;
265
+ }, import("../types").BaseObject>;
266
+ script: import("../constructors/constructWithOptions").Styled<"web", "script", Omit<import("react").DetailedHTMLProps<import("react").ScriptHTMLAttributes<HTMLScriptElement>, HTMLScriptElement>, "ref"> & {
267
+ ref?: ((instance: HTMLScriptElement | null) => void) | import("react").RefObject<HTMLScriptElement> | null | undefined;
268
+ }, import("../types").BaseObject>;
269
+ section: import("../constructors/constructWithOptions").Styled<"web", "section", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
270
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
271
+ }, import("../types").BaseObject>;
272
+ select: import("../constructors/constructWithOptions").Styled<"web", "select", Omit<import("react").DetailedHTMLProps<import("react").SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>, "ref"> & {
273
+ ref?: ((instance: HTMLSelectElement | null) => void) | import("react").RefObject<HTMLSelectElement> | null | undefined;
274
+ }, import("../types").BaseObject>;
275
+ small: import("../constructors/constructWithOptions").Styled<"web", "small", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
276
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
277
+ }, import("../types").BaseObject>;
278
+ source: import("../constructors/constructWithOptions").Styled<"web", "source", Omit<import("react").DetailedHTMLProps<import("react").SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement>, "ref"> & {
279
+ ref?: ((instance: HTMLSourceElement | null) => void) | import("react").RefObject<HTMLSourceElement> | null | undefined;
280
+ }, import("../types").BaseObject>;
281
+ span: import("../constructors/constructWithOptions").Styled<"web", "span", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & {
282
+ ref?: ((instance: HTMLSpanElement | null) => void) | import("react").RefObject<HTMLSpanElement> | null | undefined;
283
+ }, import("../types").BaseObject>;
284
+ strong: import("../constructors/constructWithOptions").Styled<"web", "strong", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
285
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
286
+ }, import("../types").BaseObject>;
287
+ style: import("../constructors/constructWithOptions").Styled<"web", "style", Omit<import("react").DetailedHTMLProps<import("react").StyleHTMLAttributes<HTMLStyleElement>, HTMLStyleElement>, "ref"> & {
288
+ ref?: ((instance: HTMLStyleElement | null) => void) | import("react").RefObject<HTMLStyleElement> | null | undefined;
289
+ }, import("../types").BaseObject>;
290
+ sub: import("../constructors/constructWithOptions").Styled<"web", "sub", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
291
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
292
+ }, import("../types").BaseObject>;
293
+ summary: import("../constructors/constructWithOptions").Styled<"web", "summary", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
294
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
295
+ }, import("../types").BaseObject>;
296
+ sup: import("../constructors/constructWithOptions").Styled<"web", "sup", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
297
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
298
+ }, import("../types").BaseObject>;
299
+ table: import("../constructors/constructWithOptions").Styled<"web", "table", Omit<import("react").DetailedHTMLProps<import("react").TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, "ref"> & {
300
+ ref?: ((instance: HTMLTableElement | null) => void) | import("react").RefObject<HTMLTableElement> | null | undefined;
301
+ }, import("../types").BaseObject>;
302
+ template: import("../constructors/constructWithOptions").Styled<"web", "template", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement>, "ref"> & {
303
+ ref?: ((instance: HTMLTemplateElement | null) => void) | import("react").RefObject<HTMLTemplateElement> | null | undefined;
304
+ }, import("../types").BaseObject>;
305
+ tbody: import("../constructors/constructWithOptions").Styled<"web", "tbody", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "ref"> & {
306
+ ref?: ((instance: HTMLTableSectionElement | null) => void) | import("react").RefObject<HTMLTableSectionElement> | null | undefined;
307
+ }, import("../types").BaseObject>;
308
+ td: import("../constructors/constructWithOptions").Styled<"web", "td", Omit<import("react").DetailedHTMLProps<import("react").TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>, "ref"> & {
309
+ ref?: ((instance: HTMLTableDataCellElement | null) => void) | import("react").RefObject<HTMLTableDataCellElement> | null | undefined;
310
+ }, import("../types").BaseObject>;
311
+ textarea: import("../constructors/constructWithOptions").Styled<"web", "textarea", Omit<import("react").DetailedHTMLProps<import("react").TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "ref"> & {
312
+ ref?: ((instance: HTMLTextAreaElement | null) => void) | import("react").RefObject<HTMLTextAreaElement> | null | undefined;
313
+ }, import("../types").BaseObject>;
314
+ tfoot: import("../constructors/constructWithOptions").Styled<"web", "tfoot", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "ref"> & {
315
+ ref?: ((instance: HTMLTableSectionElement | null) => void) | import("react").RefObject<HTMLTableSectionElement> | null | undefined;
316
+ }, import("../types").BaseObject>;
317
+ th: import("../constructors/constructWithOptions").Styled<"web", "th", Omit<import("react").DetailedHTMLProps<import("react").ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>, "ref"> & {
318
+ ref?: ((instance: HTMLTableHeaderCellElement | null) => void) | import("react").RefObject<HTMLTableHeaderCellElement> | null | undefined;
319
+ }, import("../types").BaseObject>;
320
+ thead: import("../constructors/constructWithOptions").Styled<"web", "thead", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "ref"> & {
321
+ ref?: ((instance: HTMLTableSectionElement | null) => void) | import("react").RefObject<HTMLTableSectionElement> | null | undefined;
322
+ }, import("../types").BaseObject>;
323
+ time: import("../constructors/constructWithOptions").Styled<"web", "time", Omit<import("react").DetailedHTMLProps<import("react").TimeHTMLAttributes<HTMLTimeElement>, HTMLTimeElement>, "ref"> & {
324
+ ref?: ((instance: HTMLTimeElement | null) => void) | import("react").RefObject<HTMLTimeElement> | null | undefined;
325
+ }, import("../types").BaseObject>;
326
+ title: import("../constructors/constructWithOptions").Styled<"web", "title", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTitleElement>, HTMLTitleElement>, "ref"> & {
327
+ ref?: ((instance: HTMLTitleElement | null) => void) | import("react").RefObject<HTMLTitleElement> | null | undefined;
328
+ }, import("../types").BaseObject>;
329
+ tr: import("../constructors/constructWithOptions").Styled<"web", "tr", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>, "ref"> & {
330
+ ref?: ((instance: HTMLTableRowElement | null) => void) | import("react").RefObject<HTMLTableRowElement> | null | undefined;
331
+ }, import("../types").BaseObject>;
332
+ track: import("../constructors/constructWithOptions").Styled<"web", "track", Omit<import("react").DetailedHTMLProps<import("react").TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement>, "ref"> & {
333
+ ref?: ((instance: HTMLTrackElement | null) => void) | import("react").RefObject<HTMLTrackElement> | null | undefined;
334
+ }, import("../types").BaseObject>;
335
+ u: import("../constructors/constructWithOptions").Styled<"web", "u", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
336
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
337
+ }, import("../types").BaseObject>;
338
+ ul: import("../constructors/constructWithOptions").Styled<"web", "ul", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref"> & {
339
+ ref?: ((instance: HTMLUListElement | null) => void) | import("react").RefObject<HTMLUListElement> | null | undefined;
340
+ }, import("../types").BaseObject>;
341
+ var: import("../constructors/constructWithOptions").Styled<"web", "var", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
342
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
343
+ }, import("../types").BaseObject>;
344
+ video: import("../constructors/constructWithOptions").Styled<"web", "video", Omit<import("react").DetailedHTMLProps<import("react").VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>, "ref"> & {
345
+ ref?: ((instance: HTMLVideoElement | null) => void) | import("react").RefObject<HTMLVideoElement> | null | undefined;
346
+ }, import("../types").BaseObject>;
347
+ wbr: import("../constructors/constructWithOptions").Styled<"web", "wbr", Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
348
+ ref?: ((instance: HTMLElement | null) => void) | import("react").RefObject<HTMLElement> | null | undefined;
349
+ }, import("../types").BaseObject>;
350
+ webview: import("../constructors/constructWithOptions").Styled<"web", "webview", Omit<import("react").DetailedHTMLProps<import("react").WebViewHTMLAttributes<HTMLWebViewElement>, HTMLWebViewElement>, "ref"> & {
351
+ ref?: ((instance: HTMLWebViewElement | null) => void) | import("react").RefObject<HTMLWebViewElement> | null | undefined;
352
+ }, import("../types").BaseObject>;
353
+ svg: import("../constructors/constructWithOptions").Styled<"web", "svg", Omit<import("react").SVGProps<SVGSVGElement>, "ref"> & {
354
+ ref?: ((instance: SVGSVGElement | null) => void) | import("react").RefObject<SVGSVGElement> | null | undefined;
355
+ }, import("../types").BaseObject>;
356
+ animate: import("../constructors/constructWithOptions").Styled<"web", "animate", Omit<import("react").SVGProps<SVGElement>, "ref"> & {
357
+ ref?: ((instance: SVGElement | null) => void) | import("react").RefObject<SVGElement> | null | undefined;
358
+ }, import("../types").BaseObject>;
359
+ animateMotion: import("../constructors/constructWithOptions").Styled<"web", "animateMotion", Omit<import("react").SVGProps<SVGElement>, "ref"> & {
360
+ ref?: ((instance: SVGElement | null) => void) | import("react").RefObject<SVGElement> | null | undefined;
361
+ }, import("../types").BaseObject>;
362
+ animateTransform: import("../constructors/constructWithOptions").Styled<"web", "animateTransform", Omit<import("react").SVGProps<SVGElement>, "ref"> & {
363
+ ref?: ((instance: SVGElement | null) => void) | import("react").RefObject<SVGElement> | null | undefined;
364
+ }, import("../types").BaseObject>;
365
+ circle: import("../constructors/constructWithOptions").Styled<"web", "circle", Omit<import("react").SVGProps<SVGCircleElement>, "ref"> & {
366
+ ref?: ((instance: SVGCircleElement | null) => void) | import("react").RefObject<SVGCircleElement> | null | undefined;
367
+ }, import("../types").BaseObject>;
368
+ clipPath: import("../constructors/constructWithOptions").Styled<"web", "clipPath", Omit<import("react").SVGProps<SVGClipPathElement>, "ref"> & {
369
+ ref?: ((instance: SVGClipPathElement | null) => void) | import("react").RefObject<SVGClipPathElement> | null | undefined;
370
+ }, import("../types").BaseObject>;
371
+ defs: import("../constructors/constructWithOptions").Styled<"web", "defs", Omit<import("react").SVGProps<SVGDefsElement>, "ref"> & {
372
+ ref?: ((instance: SVGDefsElement | null) => void) | import("react").RefObject<SVGDefsElement> | null | undefined;
373
+ }, import("../types").BaseObject>;
374
+ desc: import("../constructors/constructWithOptions").Styled<"web", "desc", Omit<import("react").SVGProps<SVGDescElement>, "ref"> & {
375
+ ref?: ((instance: SVGDescElement | null) => void) | import("react").RefObject<SVGDescElement> | null | undefined;
376
+ }, import("../types").BaseObject>;
377
+ ellipse: import("../constructors/constructWithOptions").Styled<"web", "ellipse", Omit<import("react").SVGProps<SVGEllipseElement>, "ref"> & {
378
+ ref?: ((instance: SVGEllipseElement | null) => void) | import("react").RefObject<SVGEllipseElement> | null | undefined;
379
+ }, import("../types").BaseObject>;
380
+ feBlend: import("../constructors/constructWithOptions").Styled<"web", "feBlend", Omit<import("react").SVGProps<SVGFEBlendElement>, "ref"> & {
381
+ ref?: ((instance: SVGFEBlendElement | null) => void) | import("react").RefObject<SVGFEBlendElement> | null | undefined;
382
+ }, import("../types").BaseObject>;
383
+ feColorMatrix: import("../constructors/constructWithOptions").Styled<"web", "feColorMatrix", Omit<import("react").SVGProps<SVGFEColorMatrixElement>, "ref"> & {
384
+ ref?: ((instance: SVGFEColorMatrixElement | null) => void) | import("react").RefObject<SVGFEColorMatrixElement> | null | undefined;
385
+ }, import("../types").BaseObject>;
386
+ feComponentTransfer: import("../constructors/constructWithOptions").Styled<"web", "feComponentTransfer", Omit<import("react").SVGProps<SVGFEComponentTransferElement>, "ref"> & {
387
+ ref?: ((instance: SVGFEComponentTransferElement | null) => void) | import("react").RefObject<SVGFEComponentTransferElement> | null | undefined;
388
+ }, import("../types").BaseObject>;
389
+ feComposite: import("../constructors/constructWithOptions").Styled<"web", "feComposite", Omit<import("react").SVGProps<SVGFECompositeElement>, "ref"> & {
390
+ ref?: ((instance: SVGFECompositeElement | null) => void) | import("react").RefObject<SVGFECompositeElement> | null | undefined;
391
+ }, import("../types").BaseObject>;
392
+ feConvolveMatrix: import("../constructors/constructWithOptions").Styled<"web", "feConvolveMatrix", Omit<import("react").SVGProps<SVGFEConvolveMatrixElement>, "ref"> & {
393
+ ref?: ((instance: SVGFEConvolveMatrixElement | null) => void) | import("react").RefObject<SVGFEConvolveMatrixElement> | null | undefined;
394
+ }, import("../types").BaseObject>;
395
+ feDiffuseLighting: import("../constructors/constructWithOptions").Styled<"web", "feDiffuseLighting", Omit<import("react").SVGProps<SVGFEDiffuseLightingElement>, "ref"> & {
396
+ ref?: ((instance: SVGFEDiffuseLightingElement | null) => void) | import("react").RefObject<SVGFEDiffuseLightingElement> | null | undefined;
397
+ }, import("../types").BaseObject>;
398
+ feDisplacementMap: import("../constructors/constructWithOptions").Styled<"web", "feDisplacementMap", Omit<import("react").SVGProps<SVGFEDisplacementMapElement>, "ref"> & {
399
+ ref?: ((instance: SVGFEDisplacementMapElement | null) => void) | import("react").RefObject<SVGFEDisplacementMapElement> | null | undefined;
400
+ }, import("../types").BaseObject>;
401
+ feDistantLight: import("../constructors/constructWithOptions").Styled<"web", "feDistantLight", Omit<import("react").SVGProps<SVGFEDistantLightElement>, "ref"> & {
402
+ ref?: ((instance: SVGFEDistantLightElement | null) => void) | import("react").RefObject<SVGFEDistantLightElement> | null | undefined;
403
+ }, import("../types").BaseObject>;
404
+ feDropShadow: import("../constructors/constructWithOptions").Styled<"web", "feDropShadow", Omit<import("react").SVGProps<SVGFEDropShadowElement>, "ref"> & {
405
+ ref?: ((instance: SVGFEDropShadowElement | null) => void) | import("react").RefObject<SVGFEDropShadowElement> | null | undefined;
406
+ }, import("../types").BaseObject>;
407
+ feFlood: import("../constructors/constructWithOptions").Styled<"web", "feFlood", Omit<import("react").SVGProps<SVGFEFloodElement>, "ref"> & {
408
+ ref?: ((instance: SVGFEFloodElement | null) => void) | import("react").RefObject<SVGFEFloodElement> | null | undefined;
409
+ }, import("../types").BaseObject>;
410
+ feFuncA: import("../constructors/constructWithOptions").Styled<"web", "feFuncA", Omit<import("react").SVGProps<SVGFEFuncAElement>, "ref"> & {
411
+ ref?: ((instance: SVGFEFuncAElement | null) => void) | import("react").RefObject<SVGFEFuncAElement> | null | undefined;
412
+ }, import("../types").BaseObject>;
413
+ feFuncB: import("../constructors/constructWithOptions").Styled<"web", "feFuncB", Omit<import("react").SVGProps<SVGFEFuncBElement>, "ref"> & {
414
+ ref?: ((instance: SVGFEFuncBElement | null) => void) | import("react").RefObject<SVGFEFuncBElement> | null | undefined;
415
+ }, import("../types").BaseObject>;
416
+ feFuncG: import("../constructors/constructWithOptions").Styled<"web", "feFuncG", Omit<import("react").SVGProps<SVGFEFuncGElement>, "ref"> & {
417
+ ref?: ((instance: SVGFEFuncGElement | null) => void) | import("react").RefObject<SVGFEFuncGElement> | null | undefined;
418
+ }, import("../types").BaseObject>;
419
+ feFuncR: import("../constructors/constructWithOptions").Styled<"web", "feFuncR", Omit<import("react").SVGProps<SVGFEFuncRElement>, "ref"> & {
420
+ ref?: ((instance: SVGFEFuncRElement | null) => void) | import("react").RefObject<SVGFEFuncRElement> | null | undefined;
421
+ }, import("../types").BaseObject>;
422
+ feGaussianBlur: import("../constructors/constructWithOptions").Styled<"web", "feGaussianBlur", Omit<import("react").SVGProps<SVGFEGaussianBlurElement>, "ref"> & {
423
+ ref?: ((instance: SVGFEGaussianBlurElement | null) => void) | import("react").RefObject<SVGFEGaussianBlurElement> | null | undefined;
424
+ }, import("../types").BaseObject>;
425
+ feImage: import("../constructors/constructWithOptions").Styled<"web", "feImage", Omit<import("react").SVGProps<SVGFEImageElement>, "ref"> & {
426
+ ref?: ((instance: SVGFEImageElement | null) => void) | import("react").RefObject<SVGFEImageElement> | null | undefined;
427
+ }, import("../types").BaseObject>;
428
+ feMerge: import("../constructors/constructWithOptions").Styled<"web", "feMerge", Omit<import("react").SVGProps<SVGFEMergeElement>, "ref"> & {
429
+ ref?: ((instance: SVGFEMergeElement | null) => void) | import("react").RefObject<SVGFEMergeElement> | null | undefined;
430
+ }, import("../types").BaseObject>;
431
+ feMergeNode: import("../constructors/constructWithOptions").Styled<"web", "feMergeNode", Omit<import("react").SVGProps<SVGFEMergeNodeElement>, "ref"> & {
432
+ ref?: ((instance: SVGFEMergeNodeElement | null) => void) | import("react").RefObject<SVGFEMergeNodeElement> | null | undefined;
433
+ }, import("../types").BaseObject>;
434
+ feMorphology: import("../constructors/constructWithOptions").Styled<"web", "feMorphology", Omit<import("react").SVGProps<SVGFEMorphologyElement>, "ref"> & {
435
+ ref?: ((instance: SVGFEMorphologyElement | null) => void) | import("react").RefObject<SVGFEMorphologyElement> | null | undefined;
436
+ }, import("../types").BaseObject>;
437
+ feOffset: import("../constructors/constructWithOptions").Styled<"web", "feOffset", Omit<import("react").SVGProps<SVGFEOffsetElement>, "ref"> & {
438
+ ref?: ((instance: SVGFEOffsetElement | null) => void) | import("react").RefObject<SVGFEOffsetElement> | null | undefined;
439
+ }, import("../types").BaseObject>;
440
+ fePointLight: import("../constructors/constructWithOptions").Styled<"web", "fePointLight", Omit<import("react").SVGProps<SVGFEPointLightElement>, "ref"> & {
441
+ ref?: ((instance: SVGFEPointLightElement | null) => void) | import("react").RefObject<SVGFEPointLightElement> | null | undefined;
442
+ }, import("../types").BaseObject>;
443
+ feSpecularLighting: import("../constructors/constructWithOptions").Styled<"web", "feSpecularLighting", Omit<import("react").SVGProps<SVGFESpecularLightingElement>, "ref"> & {
444
+ ref?: ((instance: SVGFESpecularLightingElement | null) => void) | import("react").RefObject<SVGFESpecularLightingElement> | null | undefined;
445
+ }, import("../types").BaseObject>;
446
+ feSpotLight: import("../constructors/constructWithOptions").Styled<"web", "feSpotLight", Omit<import("react").SVGProps<SVGFESpotLightElement>, "ref"> & {
447
+ ref?: ((instance: SVGFESpotLightElement | null) => void) | import("react").RefObject<SVGFESpotLightElement> | null | undefined;
448
+ }, import("../types").BaseObject>;
449
+ feTile: import("../constructors/constructWithOptions").Styled<"web", "feTile", Omit<import("react").SVGProps<SVGFETileElement>, "ref"> & {
450
+ ref?: ((instance: SVGFETileElement | null) => void) | import("react").RefObject<SVGFETileElement> | null | undefined;
451
+ }, import("../types").BaseObject>;
452
+ feTurbulence: import("../constructors/constructWithOptions").Styled<"web", "feTurbulence", Omit<import("react").SVGProps<SVGFETurbulenceElement>, "ref"> & {
453
+ ref?: ((instance: SVGFETurbulenceElement | null) => void) | import("react").RefObject<SVGFETurbulenceElement> | null | undefined;
454
+ }, import("../types").BaseObject>;
455
+ filter: import("../constructors/constructWithOptions").Styled<"web", "filter", Omit<import("react").SVGProps<SVGFilterElement>, "ref"> & {
456
+ ref?: ((instance: SVGFilterElement | null) => void) | import("react").RefObject<SVGFilterElement> | null | undefined;
457
+ }, import("../types").BaseObject>;
458
+ foreignObject: import("../constructors/constructWithOptions").Styled<"web", "foreignObject", Omit<import("react").SVGProps<SVGForeignObjectElement>, "ref"> & {
459
+ ref?: ((instance: SVGForeignObjectElement | null) => void) | import("react").RefObject<SVGForeignObjectElement> | null | undefined;
460
+ }, import("../types").BaseObject>;
461
+ g: import("../constructors/constructWithOptions").Styled<"web", "g", Omit<import("react").SVGProps<SVGGElement>, "ref"> & {
462
+ ref?: ((instance: SVGGElement | null) => void) | import("react").RefObject<SVGGElement> | null | undefined;
463
+ }, import("../types").BaseObject>;
464
+ image: import("../constructors/constructWithOptions").Styled<"web", "image", Omit<import("react").SVGProps<SVGImageElement>, "ref"> & {
465
+ ref?: ((instance: SVGImageElement | null) => void) | import("react").RefObject<SVGImageElement> | null | undefined;
466
+ }, import("../types").BaseObject>;
467
+ line: import("../constructors/constructWithOptions").Styled<"web", "line", Omit<import("react").SVGLineElementAttributes<SVGLineElement>, "ref"> & {
468
+ ref?: ((instance: SVGLineElement | null) => void) | import("react").RefObject<SVGLineElement> | null | undefined;
469
+ }, import("../types").BaseObject>;
470
+ linearGradient: import("../constructors/constructWithOptions").Styled<"web", "linearGradient", Omit<import("react").SVGProps<SVGLinearGradientElement>, "ref"> & {
471
+ ref?: ((instance: SVGLinearGradientElement | null) => void) | import("react").RefObject<SVGLinearGradientElement> | null | undefined;
472
+ }, import("../types").BaseObject>;
473
+ marker: import("../constructors/constructWithOptions").Styled<"web", "marker", Omit<import("react").SVGProps<SVGMarkerElement>, "ref"> & {
474
+ ref?: ((instance: SVGMarkerElement | null) => void) | import("react").RefObject<SVGMarkerElement> | null | undefined;
475
+ }, import("../types").BaseObject>;
476
+ mask: import("../constructors/constructWithOptions").Styled<"web", "mask", Omit<import("react").SVGProps<SVGMaskElement>, "ref"> & {
477
+ ref?: ((instance: SVGMaskElement | null) => void) | import("react").RefObject<SVGMaskElement> | null | undefined;
478
+ }, import("../types").BaseObject>;
479
+ metadata: import("../constructors/constructWithOptions").Styled<"web", "metadata", Omit<import("react").SVGProps<SVGMetadataElement>, "ref"> & {
480
+ ref?: ((instance: SVGMetadataElement | null) => void) | import("react").RefObject<SVGMetadataElement> | null | undefined;
481
+ }, import("../types").BaseObject>;
482
+ mpath: import("../constructors/constructWithOptions").Styled<"web", "mpath", Omit<import("react").SVGProps<SVGElement>, "ref"> & {
483
+ ref?: ((instance: SVGElement | null) => void) | import("react").RefObject<SVGElement> | null | undefined;
484
+ }, import("../types").BaseObject>;
485
+ path: import("../constructors/constructWithOptions").Styled<"web", "path", Omit<import("react").SVGProps<SVGPathElement>, "ref"> & {
486
+ ref?: ((instance: SVGPathElement | null) => void) | import("react").RefObject<SVGPathElement> | null | undefined;
487
+ }, import("../types").BaseObject>;
488
+ pattern: import("../constructors/constructWithOptions").Styled<"web", "pattern", Omit<import("react").SVGProps<SVGPatternElement>, "ref"> & {
489
+ ref?: ((instance: SVGPatternElement | null) => void) | import("react").RefObject<SVGPatternElement> | null | undefined;
490
+ }, import("../types").BaseObject>;
491
+ polygon: import("../constructors/constructWithOptions").Styled<"web", "polygon", Omit<import("react").SVGProps<SVGPolygonElement>, "ref"> & {
492
+ ref?: ((instance: SVGPolygonElement | null) => void) | import("react").RefObject<SVGPolygonElement> | null | undefined;
493
+ }, import("../types").BaseObject>;
494
+ polyline: import("../constructors/constructWithOptions").Styled<"web", "polyline", Omit<import("react").SVGProps<SVGPolylineElement>, "ref"> & {
495
+ ref?: ((instance: SVGPolylineElement | null) => void) | import("react").RefObject<SVGPolylineElement> | null | undefined;
496
+ }, import("../types").BaseObject>;
497
+ radialGradient: import("../constructors/constructWithOptions").Styled<"web", "radialGradient", Omit<import("react").SVGProps<SVGRadialGradientElement>, "ref"> & {
498
+ ref?: ((instance: SVGRadialGradientElement | null) => void) | import("react").RefObject<SVGRadialGradientElement> | null | undefined;
499
+ }, import("../types").BaseObject>;
500
+ rect: import("../constructors/constructWithOptions").Styled<"web", "rect", Omit<import("react").SVGProps<SVGRectElement>, "ref"> & {
501
+ ref?: ((instance: SVGRectElement | null) => void) | import("react").RefObject<SVGRectElement> | null | undefined;
502
+ }, import("../types").BaseObject>;
503
+ stop: import("../constructors/constructWithOptions").Styled<"web", "stop", Omit<import("react").SVGProps<SVGStopElement>, "ref"> & {
504
+ ref?: ((instance: SVGStopElement | null) => void) | import("react").RefObject<SVGStopElement> | null | undefined;
505
+ }, import("../types").BaseObject>;
506
+ switch: import("../constructors/constructWithOptions").Styled<"web", "switch", Omit<import("react").SVGProps<SVGSwitchElement>, "ref"> & {
507
+ ref?: ((instance: SVGSwitchElement | null) => void) | import("react").RefObject<SVGSwitchElement> | null | undefined;
508
+ }, import("../types").BaseObject>;
509
+ symbol: import("../constructors/constructWithOptions").Styled<"web", "symbol", import("../types").BaseObject, import("../types").BaseObject>;
510
+ text: import("../constructors/constructWithOptions").Styled<"web", "text", Omit<import("react").SVGTextElementAttributes<SVGTextElement>, "ref"> & {
511
+ ref?: ((instance: SVGTextElement | null) => void) | import("react").RefObject<SVGTextElement> | null | undefined;
512
+ }, import("../types").BaseObject>;
513
+ textPath: import("../constructors/constructWithOptions").Styled<"web", "textPath", Omit<import("react").SVGProps<SVGTextPathElement>, "ref"> & {
514
+ ref?: ((instance: SVGTextPathElement | null) => void) | import("react").RefObject<SVGTextPathElement> | null | undefined;
515
+ }, import("../types").BaseObject>;
516
+ tspan: import("../constructors/constructWithOptions").Styled<"web", "tspan", Omit<import("react").SVGProps<SVGTSpanElement>, "ref"> & {
517
+ ref?: ((instance: SVGTSpanElement | null) => void) | import("react").RefObject<SVGTSpanElement> | null | undefined;
518
+ }, import("../types").BaseObject>;
519
+ use: import("../constructors/constructWithOptions").Styled<"web", "use", Omit<import("react").SVGProps<SVGUseElement>, "ref"> & {
520
+ ref?: ((instance: SVGUseElement | null) => void) | import("react").RefObject<SVGUseElement> | null | undefined;
521
+ }, import("../types").BaseObject>;
522
+ view: import("../constructors/constructWithOptions").Styled<"web", "view", Omit<import("react").SVGProps<SVGViewElement>, "ref"> & {
523
+ ref?: ((instance: SVGViewElement | null) => void) | import("react").RefObject<SVGViewElement> | null | undefined;
524
+ }, import("../types").BaseObject>;
181
525
  };
182
526
  export declare const rehydrateTestStyles: () => void;
183
527
  export declare const stripComments: (str: string) => string;