declare type GPTaskCallback = (data: any) => any; export declare const urlEncode: (data: any) => string; export declare const get: (url: string) => Promise; export declare const post: (url: string, data: any, options?: { [key: string]: string; }) => Promise; export declare const put: (url: string, data: any, options?: { [key: string]: string; } | undefined) => Promise; export declare const ioDelete: (url: string, options?: { [key: string]: string; } | undefined) => Promise; export declare const executeGPTask: (job: string, inputs: any, statusCallback?: GPTaskCallback | null) => Promise; export {}; //# sourceMappingURL=io.d.ts.map