declare namespace _default {
    export const scheduleType: {
        type: string;
        icon: string;
        label: string;
        items: {
            label: string;
            value: string;
            forms: {
                timeUnit: {
                    type: string;
                    icon: string;
                    label: string;
                    items: {
                        label: string;
                        value: string;
                    }[];
                };
                interval: {
                    type: string;
                    required: boolean;
                    icon: string;
                    label: string;
                    min: number;
                    max: number;
                };
            };
        }[];
    };
}
export default _default;
