import { StoryObj } from '@storybook/react'; declare const meta: { title: string; component: ({ ...rest }: import('../types').SelectableChipProps) => import("react").JSX.Element; tags: string[]; argTypes: { size: { options: string[]; control: { type: "radio"; }; }; icon: { description: string; options: string[]; mapping: Record; control: { type: "radio"; }; }; disabled: { description: string; control: { type: "boolean"; }; }; className: { table: { disable: true; }; }; }; }; export default meta; type Story = StoryObj; export declare const Default: Story;