import React from "react"; import { ComponentStyleProps, StyledProps, StyledStyle } from "../types"; /** * Create a Styled Component given a style schema and a base theme (both optional). * @param {React.ComponentType} Component The component to render. * @param {StyledStyle} schema The style schema. * @returns A wrapper around your component with extended features. */ export declare const createStyled: , TStyleProps = ComponentStyleProps, TVariantNames extends string = never>(Component: TComponent, schema?: StyledStyle) => React.ForwardRefExoticComponent, ComponentStyleProps, keyof StyledStyle["variants"]>> & React.RefAttributes>;