import { StoryObj } from '@storybook/react'; declare const meta: { title: string; component: import('react').ForwardRefExoticComponent>; parameters: { docs: { story: { height: string; }; }; controls: { exclude: string[]; }; }; args: { label: string; size: "md"; disabled: false; }; argTypes: { size: { options: string[]; control: { type: "radio"; }; }; icon: { description: string; options: string[]; mapping: Record; control: { type: "select"; }; }; onSelectionChange: { action: string; }; }; tags: string[]; }; export default meta; type Story = StoryObj; export declare const Default: Story;