import { Sizes, Colors, Variants } from '../../styles'; interface Props { inputSize: Sizes; name: string; onChange: (e: { target: { value: string; }; }) => void; error?: string; variant: Variants; color: Colors; } interface ContainerProps { fullWidth?: boolean; } interface LabelProps { error?: string; } declare const StyledTextInput: import("styled-components").StyledComponent<"input", import("styled-components").DefaultTheme, Props, never>; declare const StyledLabel: import("styled-components").StyledComponent<"label", import("styled-components").DefaultTheme, LabelProps, never>; declare const StyledInputContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, ContainerProps, never>; declare const StyledInputError: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>; export { StyledTextInput, StyledLabel, StyledInputContainer, StyledInputError };