UNPKG

apphouse

Version:

Component library for React that uses observable state management and theme-able components.

20 lines (19 loc) 702 B
/// <reference types="react" /> import type { StoryObj } from '@storybook/react'; declare const meta: { title: string; component: import("react").FC<import("../../lib/templates/ChatBox").ChatBoxProps>; tags: string[]; argTypes: {}; }; export default meta; type Story = StoryObj<typeof meta>; export declare const Default: Story; export declare const Loading: Story; export declare const Disabled: Story; export declare const WithHistory: Story; export declare const WithMaxHeight: Story; export declare const WithChatBubbleHistory: Story; export declare const WithInitialValue: Story; export declare const WithCompactLoading: Story; export declare const WithAugmentedChatPrompt: Story;