/** * * Data transfer object representing basic authentication credentials for a CouchDB remote * connection. * / */ export declare class Basic { /** * * The username for authentication. */ username: string; /** * * The password for authentication. */ password: string; constructor(partial: Partial & Pick); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): Basic; }