import { StoryObj } from '@storybook/react'; import { DescriptionPreview } from '.'; declare const meta: { component: typeof DescriptionPreview; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { description: { description: string; type: { required: true; name: "string"; }; control: { type: "text"; }; }; letterLimit: { description: string; type: { name: "number"; required: false; }; control: { type: "number"; }; table: { defaultValue: { summary: string; }; }; }; buttonText: { description: string; control: { type: "object"; }; defaultValue: { typographyVariant: string; showLess: string; showMore: string; themeType: string; layer: number; }; }; }; tags: string[]; }; export default meta; type Story = StoryObj; export declare const Primary: Story;