import { Field } from '../Field';
import * as React from 'react';
export interface SearchbarProps extends Field.InputProps {
    children: React.ReactNode;
    name: string;
    value?: string;
    onClear: React.MouseEventHandler<HTMLButtonElement>;
    clearLabel: string;
}
export declare const Searchbar: React.ForwardRefExoticComponent<SearchbarProps & React.RefAttributes<HTMLInputElement>>;
//# sourceMappingURL=Searchbar.d.ts.map