import { ReactNode } from 'react'; import { FormControlProps, SelectProps } from '@mui/material'; export type DropdownProps = Omit & { formControlProps?: Omit; helperText?: ReactNode; label?: ReactNode; }; export declare function Dropdown({ children, error, formControlProps, fullWidth, helperText, label, size, ...props }: DropdownProps): import("react/jsx-runtime").JSX.Element;