import { FC } from "react";
import { CaptionLabelProps } from "react-day-picker";
interface IYearMonthForm {
    onChange?: (modifiersArg: any) => void;
    isShown?: boolean;
    text: string;
    selectedDays?: {
        from: any;
        to: any;
    } | Date;
    selectionMode?: string;
    month: Date;
    onClick: (e: any) => void;
}
export declare const YearMonthPicker: FC<CaptionLabelProps & IYearMonthForm>;
export {};
//# sourceMappingURL=YearMonthPicker.d.ts.map