import { ComponentStory } from '@storybook/react'; import React from 'react'; declare const Story: { title: string; component: React.MemoExoticComponent<({ id, title, description, images, tags, gridView, link, state, isPrivate, editLink, editState, onDelete, isPDF, collabDetailsLink, collabDetailsState, onHide, onMove, isHidden, highlight, hightlightBorderColor, }: { id: string; title: string; description: string; images: string[]; tags: string[]; gridView?: boolean | undefined; link: string; state?: object | undefined; isPDF?: boolean | undefined; highlight?: import("../../types").HightlightType | undefined; hightlightBorderColor?: string | 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>; parameters: { viewport: { viewports: import("@storybook/addon-viewport/dist/ts3.9/models").ViewportMap; defaultViewport: string; }; }; 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; }; }; tags: { defaultValue: string[][]; control: { type: string; }; }; isPrivate: { defaultValue: boolean; control: { type: string; }; }; link: { defaultValue: string; control: { type: string; }; }; state: { defaultValue: {}; }; editLink: { defaultValue: string; control: { type: string; }; }; editState: { defaultValue: {}; }; onDelete: { action: string; }; }; }; export default Story; 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 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 SmallVersion: ComponentStory void) | undefined; collabDetailsLink?: string | undefined; collabDetailsState?: string | undefined; onHide?: ((id: string) => void) | undefined; onMove?: ((id: string) => void) | undefined; } & import("../../types").IBlock) => JSX.Element>>;