@automattic/agenttic-ui
Version:
UI components for the Agenttic framework
33 lines • 826 B
TypeScript
import type { StoryObj } from '@storybook/react';
import { Chat } from '../chat/Chat';
declare const meta: {
title: string;
component: typeof Chat;
parameters: {
layout: string;
docs: {
description: {
component: string;
};
};
};
argTypes: {
variant: {
control: "select";
options: string[];
};
floatingChatState: {
control: "select";
options: string[];
};
placeholder: {
control: "text";
};
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const CollapsedView: Story;
export declare const CompactView: Story;
export declare const ConversationView: Story;
//# sourceMappingURL=ChatViews.stories.d.ts.map