import { Colors, Sizes } from '../../styles'; interface Props { name: string; items: any[]; label: string; size: Sizes; color: Colors; fullWidth?: boolean; value?: string | string[]; idKey: string; titleKey: string; onChange?: (e: { target: { value: string; }; }) => void; } declare const Select: { (props: Props): JSX.Element; defaultProps: { color: string; titleKey: string; idKey: string; size: string; }; }; export default Select;