import { StoryObj } from '@storybook/react'; import { default as FancyTextOverlay } from '../FancyTextOverlay'; declare const meta: { component: typeof FancyTextOverlay; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { externalStyle: { description: string; }; position: { description: string; control: { type: "select"; }; table: { defaultValue: { summary: string; }; }; }; children: { description: string; }; textChildren: { description: string; }; }; }; export default meta; type Story = StoryObj; export declare const Primary: Story;