/**
 * @license
 * Copyright ASW (A Software World) All Rights Reserved.
 *
 * Use of this source code is governed by an MIT-style license that can be
 * found in the LICENSE file
 */
import { Control, StyleControl } from '@asoftwareworld/form-builder-pro/api';
export interface DateControl extends Control, StyleControl {
    value: string;
    minDate: Date | null;
    maxDate: Date | null;
    isDisableWeekendDates: boolean;
    type: 'date' | 'time' | 'month' | 'year' | 'datetime';
    mode: 'auto' | 'portrait' | 'landscape';
    defaultView: 'clock' | 'month' | 'year' | 'multi-year';
    yearSelector?: boolean;
    twelveHour?: boolean;
}
