import { StoryObj } from '@storybook/react'; import { default as TitleForComponent } from './TitleForComponent'; declare const meta: { component: typeof TitleForComponent; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { align: { description: string; control: { type: "select"; }; type: { name: "string"; required: false; }; options: (string | undefined)[]; table: { defaultValue: { summary: string; }; }; }; children: { description: string; control: { type: "object"; }; }; title: { description: string; control: { type: "object"; }; }; gap: { description: string; control: { type: "select"; }; options: string[]; table: { defaultValue: { summary: string; }; }; }; }; tags: string[]; }; export default meta; type Story = StoryObj; export declare const Primary: Story;