import { StoryObj } from '@storybook/react'; import { default as BottomBarIcon } from '../BottomBarIcon'; declare const meta: { component: typeof BottomBarIcon; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { themeType: { description: string; control: { type: "select"; }; options: ("primary" | "accent" | "secondary" | "info" | "success" | "warning" | "error" | "transparent" | undefined)[]; table: { defaultValue: { summary: "primary" | "accent" | "secondary" | "info" | "success" | "warning" | "error" | "transparent"; }; }; }; layer: { description: string; control: { type: "range"; min: number; max: number; }; table: { defaultValue: { summary: string; }; }; }; disabled: { description: string; control: { type: "boolean"; }; table: { defaultValue: { summary: string; }; }; }; label: { control: { type: "text"; }; table: { defaultValue: { summary: string; }; }; }; icon: { description: string; control: { type: "object"; }; }; isActive: { description: string; control: { type: "boolean"; }; table: { defaultValue: { summary: string; }; }; }; hideLabel: { description: string; control: { type: "boolean"; }; }; sizeC: { description: string; control: { type: "select"; options: string[]; }; table: { defaultValue: { summary: string; }; }; }; hoverStyle: { description: string; control: { type: "boolean"; }; }; externalStyle: { description: string; control: { type: "object"; }; }; activeThemeType: { description: string; control: { type: "select"; }; table: { defaultValue: { summary: string; }; }; }; activeLayer: { description: string; control: { type: "number"; }; table: { defaultValue: { summary: string; }; }; }; }; }; export default meta; type Story = StoryObj; export declare const Primary: Story;