import { UsagePolicyData } from "../types/usage/policy";
export type UsagePolicyDataOptions = {
    serverURL?: string;
    path?: string;
    apiKey: string;
    debug?: boolean;
};
/** Fetches the current usage policy data from the server */
export declare function getUsagePolicyData(options: UsagePolicyDataOptions): Promise<UsagePolicyData>;
