/// <reference types="node" />
export interface IEtcdOptions {
    dependencies?: string[];
    credentials?: {
        rootCertificate: Buffer;
        privateKey?: Buffer;
        certChain?: Buffer;
    };
    grpcOptions?: any;
    auth?: {
        username: string;
        password: string;
    };
    hosts?: string[] | string;
    dialTimeout?: number;
    backoffStrategy?: any;
    retry?: boolean;
}
