1 | import { Theme } from '@emotion/react';
|
2 | import { ReactJSXIntrinsicElements } from "./jsx-namespace.js";
|
3 | import { CreateStyledComponent, CreateStyled as BaseCreateStyled } from "./types.js";
|
4 | export type { ArrayInterpolation, ComponentSelector, CSSObject, FunctionInterpolation, Interpolation } from '@emotion/serialize';
|
5 | export type { CreateStyledComponent, FilteringStyledOptions, StyledComponent, StyledOptions } from "./types.js";
|
6 | export type StyledTags = {
|
7 | [Tag in keyof ReactJSXIntrinsicElements]: CreateStyledComponent<{
|
8 | theme?: Theme;
|
9 | as?: React.ElementType;
|
10 | }, ReactJSXIntrinsicElements[Tag]>;
|
11 | };
|
12 | export interface CreateStyled extends BaseCreateStyled, StyledTags {
|
13 | }
|
14 | declare const newStyled: CreateStyled;
|
15 | export default newStyled;
|