export declare class ServeoTransfer { subdomain: string; origin: string; requestPath: string; constructor(subdomain: string, requestPath: string); /** * whether `/_status` is live */ ok(): Promise; transfer(bodyObject: object): Promise; }