import * as hapi from "hapi";
export declare class HapiIntacctInvoicing {
    private server;
    setServer(server: hapi.Server): void;
    query(query: string, fields?: string[]): Promise<any>;
    get(id: string): Promise<any>;
    update(id: string, payload: any): Promise<Object>;
    createPayment(payload: any): Promise<any>;
    listAccounts(): Promise<any>;
    inspect(): Promise<any>;
}
