@mescius/dspdfviewer
Version:
Document Solutions PDF Viewer
14 lines (13 loc) • 508 B
TypeScript
/// <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;
}