import type { ReactNode } from 'react';
export type FilterHighlightingProps = {
    children: string;
    connectedTo?: string;
};
declare function FilterHighlighting({ children, connectedTo, }: FilterHighlightingProps): ReactNode;
export default FilterHighlighting;
