/// import { ComponentStory } from '@storybook/react'; declare const Story: { title: string; component: ({ 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<({ title, description, pricing, link, state, }: { title: string; description: string; pricing: string; link?: string | undefined; state?: object | undefined; }) => JSX.Element>; export declare const NoViewLink: ComponentStory<({ title, description, pricing, link, state, }: { title: string; description: string; pricing: string; link?: string | undefined; state?: object | undefined; }) => JSX.Element>;