import { SystemProps } from '../../system/interface'; import { ResponsiveProps } from '../../utils/interface'; export declare type OptionsType = { id?: string | number; value: string | number; label: string | number; }; export declare type SelectSizeType = 'compact' | 'expansive'; export declare type SelectProps = { isError?: boolean; isMulti?: boolean; isFilterable?: boolean; placeholder?: string; options: Array; value?: Array; size?: SelectSizeType; menuMaxHeight?: ResponsiveProps; disabled?: boolean; };