import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ example?: "sql" | "mainOnly" | "crud"; }, {}, "">; tags: string[]; argTypes: { example: { control: "select"; options: string[]; }; }; args: { example: "crud"; }; parameters: { layout: string; }; }; export default meta; type Story = StoryObj; export declare const CrudAdmin: Story; export declare const SqlBrowser: Story; export declare const MainOnly: Story;