import * as React from "react"; interface SearchBarProps { onSubmit?: (oldValue?: string, newValue?: string) => void; disabled?: boolean; value?: string; oldValue?: string; onChange?: (value: string) => void; placeholder?: string; } export declare class SearchBar extends React.PureComponent { private static MAX_CHARACTER_LIMIT; render(): JSX.Element; private onChange; private onSubmit; } export {};