import React from "react"; import { MetaProps } from "src/types"; type SelectMonthPropTypes = { readonly disabled: boolean; readonly input: any; readonly valueKey?: string; readonly nameKey?: string; readonly label?: string; readonly isImmutable?: boolean; readonly showEmptyOption?: boolean; readonly tabIndex?: string; readonly left?: string; readonly inputClass?: string; readonly right?: string; readonly id?: string; readonly data: any; readonly meta: MetaProps; }; declare const OldCustomSelect: (props: SelectMonthPropTypes) => React.JSX.Element; export default OldCustomSelect;