import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ forced?: boolean | null; }, {}, "">; tags: string[]; argTypes: { forced: { control: "select"; options: (boolean | null)[]; labels: { false: string; true: string; null: string; }; }; }; args: { forced: false; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Online: Story;