import { APIHost, ZohoBooksApi, ZohoBooksConfig } from "./api";
import { Contacts } from "./resources/contacts";
import { ZohoBooksAuth } from "./auth";
import { Invoices } from "resources/invoices";
export declare class ZohoBooks {
    private readonly api;
    readonly contacts: Contacts;
    readonly invoices: Invoices;
    constructor(config: ZohoBooksConfig);
}
export { APIHost, ZohoBooksApi, ZohoBooksAuth };
