import type { StoryObj } from '@storybook/react-vite';
declare const meta: {
    title: string;
    component: import("react").FC<import("../components/AutoComplete").AutoCompleteProps>;
    parameters: {
        layout: string;
    };
    tags: string[];
    argTypes: {
        disabled: {
            control: "boolean";
        };
        placeholder: {
            control: "text";
        };
        searchPlaceholder: {
            control: "text";
        };
    };
    args: {
        onChange: import("@vitest/spy").Mock<(...args: any[]) => any>;
        options: {
            value: string;
            label: string;
        }[];
    };
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Default: Story;
export declare const WithSelection: Story;
export declare const Disabled: Story;
