interface Options {
    clear?: boolean;
}
/** Sets the content of the given `input` or textarea to be `text`. */
declare const fillInput: (input: HTMLInputElement | HTMLTextAreaElement, text: string, { clear }?: Options) => void;
export default fillInput;
