import { StoryObj } from '@storybook/react'; import { default as FancySearchBar } from '../FancySearchBar'; declare const meta: { component: typeof FancySearchBar; title: string; parameters: { docs: { description: { component: string; }; story: { height: string; }; }; }; argTypes: { sizeC: { description: string; control: { type: "select"; }; table: { defaultValue: { summary: string; }; }; }; openListWhenFocused: { description: string; control: { type: "boolean"; }; table: { defaultValue: { summary: string; }; }; }; borderRadius: { description: string; control: { type: "object"; }; }; 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; }; }; }; searchListWidth: { description: string; control: { type: "text"; }; table: { defaultValue: { summary: string; }; }; }; value: { description: string; control: { type: "text"; }; }; }; }; export default meta; type Story = StoryObj; export declare const Primary: Story;