/// <reference path="../../vendor/react/react.d.ts" />
//@ts-ignore
import React from 'react';
import { ControlBase } from './ControlBase';
/**
 * Input elements of type search are text fields designed for the user
 * to enter search queries into. These are functionally identical to text inputs,
 * but may be styled differently by the user agent.
 * The control is used by the FormFiller feature.
 * */
export declare class SearchControl extends ControlBase {
    render(): React.JSX.Element;
}
