import React from "react"; import { DurationPeriod } from "../types"; interface MonthlySelectProps { readonly disabled: boolean; readonly selectedMonthOption: DurationPeriod.DayOfMonth | DurationPeriod.WeekDayOfMonth; onChange(type: DurationPeriod.DayOfMonth | DurationPeriod.WeekDayOfMonth): void; } export declare function MonthlySelect({ disabled, onChange, selectedMonthOption, }: MonthlySelectProps): React.JSX.Element; export {};