/**
 * Representation of the 'SearchConfiguration' schema.
 */
export type SearchConfiguration = {
    /**
     * Maximum number of chunks to be returned. Cannot be used with 'maxDocumentCount'.
     */
    maxChunkCount?: number;
    /**
     * [Only supports 'vector' dataRepositoryType] - Maximum number of documents to be returned. Cannot be used with 'maxChunkCount'. If maxDocumentCount is given, then only one chunk per document is returned.
     */
    maxDocumentCount?: number;
} & Record<string, any>;
//# sourceMappingURL=search-configuration.d.ts.map