import { StoryObj } from '@storybook/react'; import { default as FancyModalHeadLine } from '../FancyModalHeadLine'; declare const meta: { component: typeof FancyModalHeadLine; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { alignCenter: { description: string; control: { type: "boolean"; }; }; title: { description: string; control: { type: "text"; }; }; subTitle: { description: string; control: { type: "text"; }; }; hr: { description: string; control: { type: "object"; }; }; onXButtonClick: { description: string; control: { type: "object"; }; }; gapBetweenText: { description: string; control: { type: "select"; }; }; }; }; export default meta; type Story = StoryObj; export declare const Primary: Story;