import { FirestoreTextSearchControllerBuilder } from "../types"; /** * Utility function to perform a text search in an external index, * returning the ids of the entities. * @group Firebase */ export declare function buildExternalSearchController({ isPathSupported, search }: { isPathSupported: (path: string) => boolean; search: (props: { searchString: string; path: string; }) => Promise; }): FirestoreTextSearchControllerBuilder;