import * as React from 'react'; export interface SearchBarProps { helpText?: string; outlined?: boolean; autoFocus?: boolean; initValue?: string; placeholder?: string; searchAllText?: string; onClear: () => void; onSearchAll?: () => void; onInputChange: (value: string) => void; id?: string; title?: string; } declare const _default: React.ComponentType; export default _default;