import type { RetrievalDataRepositorySearchResult } from './retrieval-data-repository-search-result.js';
/**
 * Representation of the 'RetrievalPerFilterSearchResult' schema.
 */
export type RetrievalPerFilterSearchResult = {
    filterId: string;
    /**
     * List of returned results.
     * Default: [].
     */
    results?: RetrievalDataRepositorySearchResult[];
    /**
     * Friendly Destination Name of remote instance (grounding.name). Only present if dataRepositoryType = remote:dg.
     */
    remoteGroundingName?: string | null;
} & Record<string, any>;
//# sourceMappingURL=retrieval-per-filter-search-result.d.ts.map