/// import { ComponentStory } from '@storybook/react'; declare const Story: { title: string; component: ({ id, SVGIcon, label, link, state, replace }: { id?: string | undefined; SVGIcon: any; label: string; link?: string | undefined; state?: object | undefined; replace?: boolean | undefined; }) => JSX.Element; argTypes: { SVGIcon: { description: string; control: { type: string; }; }; label: { defaultValue: string; control: { type: string; }; }; id: { defaultValue: string; control: { type: string; }; }; }; }; export default Story; export declare const Default: ComponentStory<({ id, SVGIcon, label, link, state, replace }: { id?: string | undefined; SVGIcon: any; label: string; link?: string | undefined; state?: object | undefined; replace?: boolean | undefined; }) => JSX.Element>;