UNPKG

619 BTypeScriptView Raw
1import * as React from 'react';
2export interface TreeViewSearchProps extends React.HTMLProps<HTMLInputElement> {
3 /** Callback for search input */
4 onSearch?: (event: React.ChangeEvent<HTMLInputElement>) => void;
5 /** Id for the search input */
6 id?: string;
7 /** Name for the search input */
8 name?: string;
9 /** Accessible label for the search input */
10 'aria-label'?: string;
11 /** Classes applied to the wrapper for the search input */
12 className?: string;
13}
14export declare const TreeViewSearch: React.FunctionComponent<TreeViewSearchProps>;
15//# sourceMappingURL=TreeViewSearch.d.ts.map
\No newline at end of file