export declare const MAINTENANCE_BODY = "under maintenance"; export type MaintenanceResponse = { maintenance: boolean; startsAt?: string; expectedEndAt?: string; reason?: string; }; export declare const isMaintenanceResponse: (response: Response) => Promise; export declare const getMaintenanceStatus: () => Promise; export declare const waitForMaintenance: () => Promise;