import { default as React } from 'react'; import { BaseInputProps } from './Input'; export type SelectProps = BaseInputProps>; export declare const Select: React.ForwardRefExoticComponent, "size"> & { size?: "xs" | "sm" | "md" | "lg" | "xl"; error?: string | boolean; } & React.RefAttributes>;