import { AbstractRestfulClient, Parameters } from '../../abstractRestfulClient'; import { GetResult } from '../../getResult'; import { RegistrationLink } from './entity/registrationLink'; export declare class RegisterClient extends AbstractRestfulClient { /** * The base path of the API */ protected basePath: string; /** * @deprecated * Prefer using the wellArchitected version */ register(subscriptionReference: string, parameters?: Parameters): Promise>; /** * @deprecated * Prefer using the wellArchitected version */ deregister(subscriptionReference: string, parameters?: Parameters): Promise; /** * @deprecated * Prefer using the wellArchitected version */ checkRegister(subscriptionReference: string, parameters?: Parameters): Promise; /** * @deprecated * Prefer using the wellArchitected version */ triggerAsynchronousUpdate(subscriptionReference: string, parameters?: Parameters): Promise; }