import type { Result } from '../api/search/search/result.js'; /** * For internal use only. * * Returns a `Result`, with non-empty data, for testing purposes. * @param config - A partial `Result` from which to build the target `Result`. * @returns The new `Result`. */ export declare function buildMockResult(config?: Partial): Result; /** * For internal use only. * * Returns a `Result` for testing purposes. * @param config - A partial `Result` from which to build the target `Result`. * @returns The new `Result`. */ export declare function buildMockNonEmptyResult(config?: Partial): Result;