import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ example?: "disabled" | "minimal" | "reports" | "playground" | "deploy" | "backup"; showPresets?: boolean; showHuman?: boolean; showExpression?: boolean; showNextRuns?: boolean; nextRunCount?: number; minuteStep?: 1 | 5 | 15 | 30; disabled?: boolean; frequency?: import("./CronBuilder.svelte.ts").CronFrequency; }, {}, "">; tags: string[]; argTypes: { example: { control: "select"; options: string[]; }; showPresets: { control: "boolean"; }; showHuman: { control: "boolean"; }; showExpression: { control: "boolean"; }; showNextRuns: { control: "boolean"; }; nextRunCount: { control: { type: "number"; min: number; max: number; }; }; minuteStep: { control: "select"; options: number[]; }; disabled: { control: "boolean"; }; frequency: { control: "select"; options: string[]; }; }; args: { example: "playground"; showPresets: true; showHuman: true; showExpression: true; showNextRuns: true; nextRunCount: number; minuteStep: 15; disabled: false; frequency: "weekly"; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const DeployPipeline: Story; export declare const Backup: Story; export declare const MonthlyReport: Story; export declare const Minimal: Story; export declare const Disabled: Story; export declare const FineMinutes: Story;