import { StoryObj } from '@storybook/react'; declare const meta: { component: import('react').ForwardRefExoticComponent & import('react').RefAttributes>; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { disabled: { description: string; type: { name: "boolean"; }; }; label: { description: string; type: { name: "string"; }; }; icon: { description: string; control: { type: "object"; }; }; selected: { description: string; type: { name: "boolean"; }; }; onClick: { description: string; type: { name: "function"; }; }; themeType: { description: string; control: { type: "radio"; }; }; iconAlign: { description: string; control: { type: "select"; }; }; sizeC: { description: string; control: { type: "select"; }; table: { defaultValue: { summary: string; }; }; }; activeTextThemeType: { description: string; control: { type: "select"; }; }; externalStyle: { description: string; control: { type: "object"; }; }; layer: { description: string; control: { type: "range"; min: number; max: number; }; table: { defaultValue: { summary: string; }; }; }; }; }; export default meta; type Story = StoryObj; export declare const Primary: Story;