import { PickerValue } from '../../CCWheelPicker/utils'; import { FormatTypes } from './helpers'; export declare type PickerValueForDate = Omit & { value: string; }; /** * 各スロットのフォーマット * mode日時の時だけ */ export declare const dateFormats: FormatTypes[]; /** * 文字列を日付に変換する * @param model * @returns */ export declare function transformValueFromDateText(model: any, slotsFormat: any): any; /** 閏年の判別をする関数 * @param year 年 * @returns boolean 閏年の場合はtrue */ export declare function isLeapYear(year: number): boolean; //# sourceMappingURL=DateHelper.d.ts.map