/// <reference types="react" />
declare const _default: {
    title: string;
    component: ({ label, options, field_state }: {
        label: string;
        options: any;
        field_state: string;
    }) => JSX.Element;
    argTypes: {
        label: {
            name: string;
            defaultValue: string;
            control: {
                type: string;
            };
        };
        field_state: {
            name: string;
            control: {
                type: string;
                options: string[];
            };
            defaultValue: string;
        };
    };
    args: {
        options: {
            key: string;
            name: string;
        }[];
    };
};
export default _default;
export declare const Select: any;
