import { ValkeyCommandArguments } from "."; import { FunctionListItemReply, FunctionListRawItemReply } from "./generic-transformers"; export declare function transformArguments(pattern?: string): ValkeyCommandArguments; type FunctionListWithCodeRawItemReply = [ ...FunctionListRawItemReply, "library_code", string ]; interface FunctionListWithCodeItemReply extends FunctionListItemReply { libraryCode: string; } export declare function transformReply(reply: Array): Array; export {};