import { SelectProps } from '@mui/material'; export type MonthFieldProps = Omit, 'onChange'> & { error?: boolean; onChange: (next: string, part: 'month') => void; }; export declare const MonthSelect: import('react').ForwardRefExoticComponent & import('react').RefAttributes>;