import { default as React } from 'react'; export interface SearchBoxProps { ariaLabel?: string; cancelAriaLabel?: string; onChange: (value: string) => void; placeholder?: string; searchValue: string; } declare const _default: React.FunctionComponent; export default _default;