/** User, url and port of a service */
export interface Credentials {
    /** Port to use to access to the service */
    port: number;
    /** Url to contact the service */
    url: string;
    /** Login to authentificate you on the service */
    user: string;
}
//# sourceMappingURL=Credentials.d.ts.map