import { AptlyApi } from './AptlyApi.js'; import { AptlyOptions } from './AptlyOptions.js'; import { AptlyOrders } from './AptlyOrders.js'; import { AptlyProducts } from './AptlyProducts.js'; import { AptlyUnits } from './AptlyUnits.js'; import { AptlyDocuments } from './AptlyDocuments.js'; import { AptlyProjects } from './AptlyProjects.js'; import { AptlyWebhooks } from './AptlyWebhooks.js'; export declare class AptlyOrganization { private api; readonly id: string; readonly path: string; constructor(api: AptlyApi, path: string, id: string); get(params?: URLSearchParams): Promise; products(id?: string): AptlyProducts; documents(id?: string): AptlyDocuments; projects(id?: string): AptlyProjects; units(id?: string): AptlyUnits; webhooks(id?: string): AptlyWebhooks; orders(id?: string): AptlyOrders; project(projectID: string): AptlyProjects; unit(unitID: string): AptlyUnits; webhook(webhookID: string): AptlyWebhooks; options(id?: string): AptlyOptions; }