import type { StoryObj } from "@storybook/react"; import React from "react"; declare const meta: { title: string; component: React.ForwardRefExoticComponent>; tags: string[]; argTypes: { variant: { description: string; options: readonly ["primary", "highlight", "highlight-secondary", "warning", "warning-secondary", "outline", "ghost", "ghost-secondary"]; control: { type: "select"; }; }; size: { description: string; options: readonly ["xmini", "mini", "xs", "sm", "md"]; control: { type: "select"; }; }; icon: { description: string; options: string[]; mapping: { readonly none: null; readonly PlusIcon: (props: React.SVGProps) => React.JSX.Element; readonly RobotIcon: (props: React.SVGProps) => React.JSX.Element; }; control: { type: "select"; }; if: { arg: string; neq: string; }; }; label: { description: string; control: { type: "text"; }; if: { arg: string; neq: string; }; }; disabled: { description: string; control: "boolean"; defaultValue: boolean; }; isLoading: { description: string; control: "boolean"; }; isPulsing: { description: string; control: "boolean"; }; isSelect: { description: string; control: "boolean"; }; isCounter: { description: string; control: "boolean"; }; briefPulse: { description: string; control: "boolean"; }; counterValue: { description: string; control: "text"; if: { arg: string; eq: boolean; }; }; tooltip: { description: string; control: "text"; }; }; render: (args: import("../components").ButtonProps & React.RefAttributes) => React.JSX.Element; }; export default meta; type Story = StoryObj; export declare const ExampleButton: Story; export declare const MiniButton: Story; export declare const Gallery: Story; //# sourceMappingURL=Button.stories.d.ts.map