export interface CronOptionModel {
    formInputClass: string;
    formSelectClass: string;
    formRadioClass: string;
    formCheckboxClass: string;
    defaultTime: string;
    use24HourTime: boolean;
    hideMinutesTab: boolean;
    hideHourlyTab: boolean;
    hideDailyTab: boolean;
    hideWeeklyTab: boolean;
    hideMonthlyTab: boolean;
    hideYearlyTab: boolean;
    hideAdvancedTab: boolean;
    /** hides the Seconds UI form element */
    hideSeconds: boolean;
    /** removes Seconds from the Cron expression */
    removeSeconds: boolean;
    /** removes Years from the Cron expression */
    removeYears: boolean;
}
export declare const defaultCronOptions: CronOptionModel;
