import type { StoryObj } from "@storybook/react"; import React from "react"; declare const meta: { title: string; component: React.ForwardRefExoticComponent>; tags: string[]; parameters: { layout: string; }; argTypes: { size: { options: readonly ["mini", "xs", "sm"]; control: { type: "select"; }; description: string; defaultValue: string; }; color: { options: readonly ["primary", "success", "warning", "info", "highlight", "green", "blue", "rose", "golden", "white"]; control: { type: "select"; }; description: string; defaultValue: string; }; label: { control: "text"; description: string; }; isBusy: { control: "boolean"; description: string; defaultValue: boolean; }; icon: { options: string[]; mapping: { readonly none: null; readonly UserGroupIcon: (props: React.SVGProps) => React.JSX.Element; }; control: { type: "select"; }; description: string; defaultValue: string; }; }; }; export default meta; type Story = StoryObj; export declare const Basic: Story; export declare const MiniChip: Story; export declare const ThinkingChip: Story; export declare const RemovableChip: Story; export declare const AllColors: Story; //# sourceMappingURL=Chip.stories.d.ts.map