import { QBOError } from "./error-classes"; export type QBOApiErrorResponse = { Fault: { Error: { Message: string; Detail: string; code: string; }[]; type: string; }; time: number; }; export declare const getErrorFromResponse: (response: Response, intuitTid: string | null) => Promise;