import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ variant?: "bar" | "card"; placement?: "fixed" | "absolute" | "static"; position?: "bottom-left" | "bottom-right" | "bottom-center"; title?: string; description?: string; acceptLabel?: string; rejectLabel?: string; customizeLabel?: string; policyLabel?: string; policyHref?: string; showCustomize?: boolean; }, {}, "">; tags: string[]; parameters: { docs: { description: { component: string; }; source: { transformArgs: boolean; componentName: string; language: string; }; }; }; argTypes: { variant: { control: "select"; options: string[]; }; placement: { control: "select"; options: string[]; }; position: { control: "select"; options: string[]; }; title: { control: "text"; }; description: { control: "text"; }; acceptLabel: { control: "text"; }; rejectLabel: { control: "text"; }; customizeLabel: { control: "text"; }; policyLabel: { control: "text"; }; policyHref: { control: "text"; }; showCustomize: { control: "boolean"; }; }; args: { variant: "bar"; placement: "fixed"; position: "bottom-center"; title: string; description: string; acceptLabel: string; rejectLabel: string; customizeLabel: string; policyLabel: string; policyHref: string; showCustomize: true; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Card: Story;