/** * * * Data transfer object representing a CouchDB view definition within a design document. */ export declare class View { /** * * The map function source code for this view. */ map: string; /** * * The optional reduce function source code for this view. */ reduce: string | undefined; constructor(partial: Partial & Pick); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): View; }