export interface AjaxOptions { method?: 'POST' | 'GET' | 'PUT' | 'DELETE'; query?: {}; body?: {}; headers?: {}; } export declare const ajax: (input: string, init?: AjaxOptions | undefined) => Promise; export interface UploadOptions { body: {}; headers?: {}; } export declare const upload: (input: string, init: UploadOptions) => Promise; //# sourceMappingURL=helpers.d.ts.map