import { Basic } from './Basic.mjs'; /** * * Data transfer object representing authentication configuration for a remote CouchDB instance. * / */ export declare class RemoteAuthentication { /** * * The basic authentication credentials, if applicable. */ basic: Basic | undefined; constructor(partial: Partial); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): RemoteAuthentication; }