import { SelectProps, FormControlProps } from '@mui/material'; import React from 'react'; import { ControllerProps } from 'react-hook-form'; export interface SelectOption { value: string | number; label: string; } export type SelectControlProps = FormControlProps & { name: string; label?: string; defaultValue?: string | number; options?: SelectOption[]; multiple?: boolean; selectProps?: SelectProps; parseValue?: (param: string) => string; formatValue?: (param: string) => string; clearable?: boolean; enableErrorMessage?: boolean; disabled?: boolean; rules?: ControllerProps['rules'] | undefined; required?: boolean; size?: 'medium' | 'small'; }; declare const SelectControl: ({ name, label, options, multiple, selectProps, parseValue, formatValue, defaultValue, clearable, enableErrorMessage, disabled, rules, required, size, ...otherProps }: SelectControlProps) => React.JSX.Element; export default SelectControl; //# sourceMappingURL=SelectControl.d.ts.map