@automattic/agenttic-ui
Version:
UI components for the Agenttic framework
38 lines • 906 B
TypeScript
import type { StoryObj } from '@storybook/react';
import { Chat } from './Chat';
declare const meta: {
title: string;
component: typeof Chat;
parameters: {
layout: string;
docs: {
canvas: {
sourceState: string;
};
};
};
tags: string[];
args: {
placeholder: string;
};
argTypes: {
variant: {
control: "select";
options: string[];
};
placeholder: {
control: "text";
};
floatingChatState: {
control: "select";
options: string[];
};
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Default: Story;
export declare const Embedded: Story;
export declare const Floating: Story;
export declare const WithEmptyView: Story;
//# sourceMappingURL=Chat.stories.d.ts.map