import { VariantProps } from "../../theme"; import { TextInputStyleProps } from "./TextInput.styled"; export interface TextInputVariants { primary: VariantProps; secondary: VariantProps; } /** * The new type for a themed component with variants * @param Props type of component's props * @param Variant the type defining the component's variants * * EG: type MyComponentVariants = "primary" | "secondary" */ export declare type TextInputTheme = TextInputStyleProps & { variants: Partial; }; export declare const textInputTheme: TextInputTheme;