import { ReplyUnion, TypeMapping } from '@redis/client/dist/lib/RESP/types';
import { SearchRawReply } from './SEARCH';
declare const _default: {
    readonly parseCommand: (this: void, parser: import("@redis/client").CommandParser, index: import("@redis/client/dist/lib/RESP/types").RedisArgument, query: import("@redis/client/dist/lib/RESP/types").RedisArgument, options?: import("./SEARCH").FtSearchOptions | undefined) => void;
    readonly transformReply: {
        readonly 2: (reply: SearchRawReply) => SearchNoContentReply;
        readonly 3: (reply: ReplyUnion, preserve?: any, typeMapping?: TypeMapping) => SearchNoContentReply;
    };
};
export default _default;
export interface SearchNoContentReply {
    total: number;
    documents: Array<string>;
    /**
     * Warnings returned alongside partial results (e.g. on query timeout under a
     * `return` / `return-strict` on-timeout policy). Only populated on RESP3;
     * always empty on RESP2.
     */
    warnings: Array<string>;
}
//# sourceMappingURL=SEARCH_NOCONTENT.d.ts.map