import { ComponentStory } from '@storybook/react'; import React from 'react'; declare const Story: { title: string; component: React.MemoExoticComponent<({ id, title, description, image, bigVersion, link, state, isPrivate, editLink, editState, onDelete, collabDetailsLink, collabDetailsState, onHide, onMove, isHidden, }: { 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; collabDetailsLink?: string | undefined; collabDetailsState?: string | undefined; onHide?: ((id: string) => void) | undefined; onMove?: ((id: string) => void) | undefined; } & import("../../types").IBlock) => 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; collabDetailsLink?: string | undefined; collabDetailsState?: string | undefined; onHide?: ((id: string) => void) | undefined; onMove?: ((id: string) => void) | undefined; } & import("../../types").IBlock) => JSX.Element>>; export declare const PrivateView: ComponentStory void) | undefined; collabDetailsLink?: string | undefined; collabDetailsState?: string | undefined; onHide?: ((id: string) => void) | undefined; onMove?: ((id: string) => void) | undefined; } & import("../../types").IBlock) => JSX.Element>>; export declare const BigVersion: ComponentStory void) | undefined; collabDetailsLink?: string | undefined; collabDetailsState?: string | undefined; onHide?: ((id: string) => void) | undefined; onMove?: ((id: string) => void) | undefined; } & import("../../types").IBlock) => JSX.Element>>;