export interface IZodCouchMeta { type: string; uniqueKey?: string[]; indexKey?: string[]; singleDoc?: boolean; } export declare class ZodCouchMeta implements IZodCouchMeta { type: string; uniqueKey?: string[]; indexKey?: string[]; singleDoc?: boolean; repo(fromCouchDb: string): this; isSingleDoc(): this; setUniqueKey(keys: string[]): this; setIndexKeys(keys: string[]): this; build(): string; }