export declare const Textarea: { baseStyle?: { transitionProperty: string; transitionDuration: string; } | undefined; sizes?: { xs: (props: import("@chakra-ui/styled-system").StyleFunctionProps) => { px: string; py: string; textStyle?: string | undefined; fontSize?: any; h?: string | undefined; height?: string | undefined; }; sm: (props: import("@chakra-ui/styled-system").StyleFunctionProps) => { px: string; py: string; textStyle?: string | undefined; fontSize?: any; h?: string | undefined; height?: string | undefined; }; md: (props: import("@chakra-ui/styled-system").StyleFunctionProps) => { px: string; py: string; h?: string | undefined; height?: string | undefined; textStyle?: string | undefined; fontSize?: any; }; } | undefined; variants?: { outline: (props: import("@chakra-ui/styled-system").StyleFunctionProps) => { borderRadius?: string | undefined; bg?: string | undefined; border?: string | undefined; borderColor?: string | undefined; _placeholder?: { color: string; } | undefined; _hover?: { borderColor: string; } | undefined; _invalid?: { borderColor: any; boxShadow: string; } | undefined; _focusVisible?: { zIndex: number; borderColor: any; boxShadow: string; } | undefined; _disabled?: { bg: string; borderColor: string; color: string; cursor: string; opacity: number; _hover: { bg: string; }; _active: { bg: string; }; } | undefined; }; } | undefined; defaultProps?: { size?: "sm" | "md" | "xs" | undefined; variant?: "outline" | undefined; colorScheme?: string | undefined; } | undefined; };