import { UsageResponse } from "../interfaces/response/UsageResponse"; /** * Retrieves current billing period or historical usage data for the user by making a GET request to the API endpoint. * * @export * @param {boolean} history - Flag to retrieve current billing or historical usage data. * @return {Promise} A promise that resolves to a UsageResponse containing the organization's usage data * @throws {Error} May throw an error if the API request fails * * @example * const usage = await getUsage(); */ export declare function getUsage(history?: boolean): Promise;