export interface PostConfiguration { contentType?: string; timeout?: number; acceptedStatusCodes?: number[]; } export interface PostResult { status: number; body: unknown; } export declare function request(url: string, method?: 'GET' | 'POST', data?: string, config?: PostConfiguration): Promise;