/// import { ComponentStory } from '@storybook/react'; declare const Story: { title: string; component: ({ name, label, placeholder, error, values, onAdd, max, disabled, regExp, regExpErrorMessage, hideValues, defaultTheme, }: import("./AddOptions").Props) => JSX.Element; argTypes: { name: { type: { required: boolean; }; description: string; control: { type: string; }; }; label: { name: string; type: { name: string; required: boolean; }; defaultValue: string; description: string; table: { type: { summary: string; }; defaultValue: { summary: string; }; }; control: { type: string; }; }; placeholder: { name: string; type: { name: string; required: boolean; }; defaultValue: string; table: { type: { summary: string; }; defaultValue: { summary: string; }; }; control: { type: string; }; }; values: { description: string; control: { type: string; }; }; error: { control: { type: string; }; }; max: { description: string; defaultValue: number; table: { type: { summary: string; }; }; control: { type: string; }; }; }; }; export default Story; export declare const Default: ComponentStory<({ name, label, placeholder, error, values, onAdd, max, disabled, regExp, regExpErrorMessage, hideValues, defaultTheme, }: import("./AddOptions").Props) => JSX.Element>;