import React from 'react';
declare type SearchStateType = {
    label: boolean;
    content: boolean;
};
declare type Props = {
    onSearch: (query: string | undefined) => void;
    searchIn: SearchStateType;
    onSearchInChange: ({ label, content }: SearchStateType) => void;
    matchPartial: boolean;
    onMatchPartial: (match: boolean) => void;
};
export declare const SearchBar: React.FC<Props>;
export {};
