import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ size?: "sm" | "md" | "lg"; variant?: "default" | "floating" | "pill" | "notch"; showLabels?: boolean; blur?: boolean; elevated?: boolean; example?: "social" | "commerce" | "workspace" | "iconsOnly" | "music"; fabClass?: string; }, {}, "">; tags: string[]; parameters: { layout: string; }; argTypes: { size: { control: "select"; options: string[]; }; variant: { control: "select"; options: string[]; }; showLabels: { control: "boolean"; }; blur: { control: "boolean"; }; elevated: { control: "boolean"; }; example: { control: "select"; options: string[]; }; fabClass: { control: "text"; }; }; args: { size: "md"; variant: "notch"; showLabels: true; blur: false; elevated: true; example: "social"; fabClass: string; }; }; export default meta; type Story = StoryObj; export declare const SocialNotch: Story; export declare const OrangeFab: Story; export declare const Floating: Story; export declare const Pill: Story; export declare const Commerce: Story; export declare const Workspace: Story; export declare const IconsOnly: Story; export declare const Large: Story; export declare const WithBlur: Story;