import { ComponentStory } from '@storybook/react'; import React from 'react'; declare const Story: { title: string; component: React.MemoExoticComponent<({ id, title, description, image, bigVersion, link }: { id: string; title: string; description: string; image: string; bigVersion?: boolean | undefined; link: string; state?: object | undefined; isPrivate?: boolean | undefined; editLink?: string | undefined; editState?: object | undefined; onDelete?: ((id: string) => void) | undefined; }) => JSX.Element>; argTypes: { id: { defaultValue: string; control: { type: string; }; }; title: { defaultValue: string; control: { type: string; }; }; description: { defaultValue: string; control: { type: string; }; }; image: { defaultValue: string; control: { type: string; }; }; isPrivate: { defaultValue: boolean; control: { type: string; }; }; bigVersion: { defaultValue: boolean; description: string; control: { type: string; }; }; }; }; export default Story; export declare const PublicView: ComponentStory void) | undefined; }) => JSX.Element>>; export declare const PrivateView: ComponentStory void) | undefined; }) => JSX.Element>>; export declare const BigVersion: ComponentStory void) | undefined; }) => JSX.Element>>;