declare function roundedStyle(): { borderRadius: string; borderWidth: number; }; declare function defaultStyle(): { borderWidth: number; }; declare function filledStyle(props: Record): { bg: any; borderWidth: number; borderColor: any; }; declare function unstyledStyle(): { borderWidth: number; }; declare function underlinedStyle(): { borderRadius: number; borderWidth: number; borderBottomWidth: number; }; declare const _default: { baseStyle: (props: Record) => { w: string; p: number; color: any; placeholderTextColor: any; _isDisabledProps: { opacity: number; bg: any; }; borderColor: any; hoverBorderColor: string; focusBorderColor: any; errorBorderColor: any; _errorMessageBaseProps: { color: any; }; }; variants: { outline: typeof defaultStyle; underlined: typeof underlinedStyle; rounded: typeof roundedStyle; filled: typeof filledStyle; unstyled: typeof unstyledStyle; default: typeof defaultStyle; }; sizes: { '2xl': { fontSize: string; }; xl: { fontSize: string; }; lg: { fontSize: string; }; md: { fontSize: string; }; sm: { fontSize: string; }; xs: { fontSize: string; }; }; defaultProps: { size: string; variant: string; borderRadius: string; }; }; export default _default;