import React from 'react'; import { Story } from '@storybook/react'; import { TextFieldProps } from './TextField'; declare const _default: { title: string; component: ({ autoFocus, disabled, error, inputRef, instruction, label, maxLength, pattern, title, minLength, name, onBlur, onChange, onFocus, onKeyPress, placeholder, required, type, value, icon, ...other }: TextFieldProps & Omit, "onFocus" | "onBlur" | "onChange" | "onKeyPress">) => JSX.Element; argTypes: { onChange: { table: { disable: boolean; }; action: string; }; inputRef: { table: { disable: boolean; }; }; onBlur: { table: { disable: boolean; }; }; onFocus: { table: { disable: boolean; }; }; onKeyPress: { table: { disable: boolean; }; }; }; }; export default _default; export declare const Demo: Story; export declare const Searchbar: Story;