export interface SelectProps { items: { text: string; value: string; }[]; error?: boolean; disabled?: boolean; size?: 'large' | 'regular'; className?: string; } export declare const Select: import("@chakra-ui/react").ChakraComponent, SelectProps>, {}>;