@activecollab/components
Version:
ActiveCollab Components
17 lines • 477 B
TypeScript
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