export declare const getQueryString: (params: any) => string; interface ReqBrace { method: string; contentType?: string; acceptType?: string; auth?: boolean; params?: any; cache?: string; } export declare const reqGetBrace: ({ method, contentType, acceptType, auth, cache }: ReqBrace) => { method: string; headers: Headers; credentials: string; mode: string; cache: string; }; export declare const reqPostBrace: ({ method, params, contentType, acceptType, auth }: ReqBrace) => { method: string; headers: Headers; credentials: string; mode: string; cache: string; body: any; }; export interface CustomPromise extends Promise { abort: Function; } export declare const promise: (url: string, options?: {}, type?: string | undefined) => CustomPromise; export {};