import { StoryObj } from '@storybook/vue3'; import { ChatOptions } from '../types'; declare const meta: { title: string; render: (args: Partial) => { setup(): {}; template: string; }; parameters: { layout: string; }; tags: string[]; }; export default meta; type Story = StoryObj; export declare const Fullscreen: Story; export declare const Windowed: Story; export declare const WorkflowChat: Story; export declare const Custom: Story; export declare const New: Story; export declare const Turnex: Story;