import { ComponentStory } from '@storybook/react'; import React from 'react'; declare const Story: { title: string; component: React.MemoExoticComponent<({ id, link, state, editLink, editState, testimonials, horizontalView, isPrivate, onDelete, collabDetailsLink, collabDetailsState, onHide, onMove, isHidden, highlight, hightlightBorderColor, cardTitle, }: { id: string; link: string; state?: object | undefined; editLink?: string | undefined; editState?: any; testimonials: { id: string; company: string; image: string; link?: string | undefined; state?: object | undefined; }[]; horizontalView?: boolean | undefined; highlight?: import("../../../types").HightlightType | undefined; hightlightBorderColor?: string | undefined; cardTitle?: string | undefined; isPrivate?: boolean | 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: { total: { defaultValue: number; control: { type: string; }; }; link: { defaultValue: string; description: string; control: { type: string; }; }; state: { defaultValue: { stateFromPreviousPage: string; }; description: string; control: { type: string; }; }; testimonials: { defaultValue: { id: string; company: string; image: string; }[]; control: { type: string; }; table: { defaultValue: { summary: { id: string; company: string; image: string; }[]; }; type: { summary: { company: string; image: string; id: string; }[]; }; }; }; showAddOption: { defaultValue: boolean; description: string; control: { type: string; }; }; addOptionLink: { defaultValue: undefined; description: string; control: { type: string; }; }; addOptionState: { defaultValue: undefined; description: string; control: { type: string; }; table: { type: { summary: string; }; }; }; horizontalView: { defaultValue: boolean; description: string; control: { type: string; }; }; }; }; export default Story; export declare const Default: 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 WithoutAddOption: 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 HorizontalView: ComponentStory void) | undefined; collabDetailsLink?: string | undefined; collabDetailsState?: string | undefined; onHide?: ((id: string) => void) | undefined; onMove?: ((id: string) => void) | undefined; } & import("../../../types").IBlock) => JSX.Element>>;