import * as React from 'react'; import IReactComponentProps from '../../../common/structures/IReactComponentProps'; import { FunctionGeneric } from '../../../common/structures/Generics'; interface IProps extends IReactComponentProps { className?: string; containerClassName?: string; containerLabel?: string; onChange?: FunctionGeneric; placeholder?: string; value?: string | number; } export default class InputSearch extends React.Component { static defaultProps: Partial; render(): React.JSX.Element; } export {}; //# sourceMappingURL=InputSearch.d.ts.map