import { Dispatch, ReactNode, SetStateAction } from 'react';
export interface I_MuiSelectProps {
    options: any[] | undefined;
    placeholder: string;
    value: any;
    setValue: Dispatch<SetStateAction<any>>;
    className: string;
    readOnly: boolean;
    disabled: boolean;
    customFirstOption?: ReactNode;
}
//# sourceMappingURL=index.d.ts.map