import { FoundationElement } from '@microsoft/fast-foundation'; type CronConfig = { timezone: string; cronExpression: string; }; /** * @tagname %%prefix%%-scheduler * * @fires change - Fired when timezone or cron expression changes */ export declare class Scheduler extends FoundationElement { minMinuteInterval: number; disableTooltips: boolean; timezone: string; cron: string; cronConfig: CronConfig; cronConfigChanged(): void; handleChange(event: CustomEvent, key: string): void; } export declare const foundationSchedulerShadowOptions: ShadowRootInit; export declare const defaultConfig: {}; /** * The Foundation Scheduler Element. * * @public * @remarks * HTML Element: \ */ export declare const foundationScheduler: (overrideDefinition?: import("@microsoft/fast-foundation").OverrideFoundationElementDefinition<{ baseName: string; styles: import("@microsoft/fast-element").ElementStyles; template: import("@microsoft/fast-element").ViewTemplate; shadowOptions: ShadowRootInit; }>) => import("@microsoft/fast-foundation").FoundationElementRegistry<{ baseName: string; styles: import("@microsoft/fast-element").ElementStyles; template: import("@microsoft/fast-element").ViewTemplate; shadowOptions: ShadowRootInit; }, typeof Scheduler>; export {}; //# sourceMappingURL=scheduler.d.ts.map