import QuickBooks from "node-quickbooks"; /** * Issue a request against the QuickBooks v3 REST API using the client's own * token, realm, and minor version. */ export declare function qboRequest(client: QuickBooks, method: "GET" | "POST", path: string, body?: unknown): Promise; /** * Run a query statement through the REST query endpoint. Mirrors what * node-quickbooks' find* methods do internally (`select * from `), * for entities that have no find* method. */ export declare function qboQuery(client: QuickBooks, selectStatement: string): Promise; //# sourceMappingURL=rest.d.ts.map