import { StoryObj } from '@storybook/react'; import { default as FancyImage } from '../FancyImageWrapper'; declare const meta: { component: typeof FancyImage; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { aspectRatio: { description: string; control: { type: "text"; }; }; children: { description: string; control: { type: "object"; }; }; filter: { description: string; control: { type: "object"; }; }; externalStyle: { description: string; control: { type: "object"; }; }; borderRadius: { description: string; table: { defaultValue: { summary: string; }; }; control: { type: "select"; }; }; sizeH: { description: string; control: { type: "text"; }; defaultValue: string; }; sizeW: { description: string; control: { type: "text"; }; defaultValue: string; }; objectFit: { description: string; control: { type: "select"; }; defaultValue: string; }; }; }; export default meta; type Story = StoryObj; export declare const Primary: Story;