import { Context } from "../imports/Context"; import { Function } from "../imports/Function"; import { StandardCredential } from "./StandardCredential"; export declare class Connection { constructor( cx?: Context, args?: any[], ctorObj?: Function, inNewExpr?: boolean ); getAttribute(name?: string): string; getConnectionRetries(): number; getConnectionTimeout(): number; getCredential(): StandardCredential; getCredentialAttribute(name?: string): string; getDataMap(): Record; getExtendedAttributes(): Record; getHost(): string; getName(): string; getPort(): number; getProtocol(): string; }