/// import { type StyledOptions } from './styled'; import { type As, type StyledAntdComponent } from './types'; type DomElements = keyof JSX.IntrinsicElements; type InternalHtmlComponents = { [Tag in DomElements]: StyledAntdComponent; }; type StyledFactory = { (component: T, options?: StyledOptions): StyledAntdComponent; }; /** * The styled factory serves as an object of styled enabled JSX elements, * and also a function that can be used to enable custom component receive antd's style props. */ export declare const antd: StyledFactory & InternalHtmlComponents; export {};