import type { StoryObj } from "@storybook/react"; import React from "react"; declare const meta: { title: string; component: React.ForwardRefExoticComponent>; tags: string[]; argTypes: { variant: { description: string; options: readonly ["embedded", "standalone"]; control: { type: "select"; }; }; titlePosition: { description: string; options: readonly ["bottom", "center"]; control: { type: "select"; }; }; isLoading: { description: string; control: "boolean"; }; manageZoomDialog: { description: string; control: "boolean"; }; title: { description: string; control: "text"; }; alt: { description: string; control: "text"; }; }; render: (args: import("../components").ImagePreviewProps & React.RefAttributes) => React.JSX.Element; }; export default meta; type Story = StoryObj; export declare const ExampleImagePreview: Story; export declare const Variants: Story; //# sourceMappingURL=ImagePreview.stories.d.ts.map