export declare function createURLQueryString(obj: Record<string, any>): string;
export declare function isAPIError(obj: any): boolean;
export declare function debounce(name: string, fn: () => void | Promise<any>, delay?: number): void;
export declare function makeRequest<ResponseType>(config: {
    apiHost?: string;
    tenantId?: string;
}, method: string, originalUrl: string, body?: any | null, attemptsRemaining?: number): Promise<ResponseType>;
//# sourceMappingURL=utils.d.ts.map