export declare const request: (url: string, options: {
    method?: string;
    qs?: Record<string, any>;
    body?: string | Record<string, any>;
    headers?: Record<string, string>;
    contentType?: 'json' | 'form';
}) => Promise<{
    text: () => Promise<string>;
}>;
