import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ side?: "left" | "right"; content?: string; author?: string; time?: string; status?: "sent" | "delivered" | "read"; }, {}, "">; tags: string[]; argTypes: { side: { control: "select"; options: string[]; }; content: { control: "text"; }; author: { control: "text"; }; time: { control: "text"; }; status: { control: "select"; options: string[]; }; }; args: { side: "left"; content: string; author: string; time: string; status: "read"; }; }; export default meta; type Story = StoryObj; export declare const Left: Story; export declare const Right: Story; export declare const Sent: Story; export declare const Delivered: Story;