import type { FlexBoxProps } from '@ariestools/sdk-react/flexbox'; import React from 'react'; /** Props for {@link SearchBar}. */ export interface SearchBarProps extends FlexBoxProps { onSearch?: (term?: string) => void; } /** Search field with submit button that invokes `onSearch` with the current term. */ export declare const SearchBar: React.FC; //# sourceMappingURL=SearchBar.d.ts.map