import { ComponentStory } from '@storybook/react'; import React from 'react'; declare const Story: { title: string; component: React.MemoExoticComponent<({ title, description, pricing, link, state }: { title: string; description: string; pricing: string; link?: string | undefined; state?: object | undefined; }) => JSX.Element>; argTypes: { title: { defaultValue: string; control: { type: string; }; }; description: { defaultValue: string; control: { type: string; }; }; pricing: { defaultValue: string; control: { type: string; }; }; link: { defaultValue: string; control: { type: string; }; }; state: { defaultValue: undefined; control: { type: string; }; table: { type: { summary: string; }; }; }; }; }; export default Story; export declare const Main: ComponentStory JSX.Element>>; export declare const NoViewLink: ComponentStory JSX.Element>>;