import { Address } from './Address';
/** Different url to manage your service */
export interface ServiceAccess {
    /** Address with url and port to manage files by ftp */
    ftp: Address;
    /** Address to see your webhosting without domain */
    http: Address;
    /** Address with url and port to manage webhosting by ssh */
    ssh: Address;
}
//# sourceMappingURL=ServiceAccess.d.ts.map