import { SdkConfiguration } from './SdkConfiguration'; import SdkBase from './SdkBase'; export declare class AdminSdk extends SdkBase { /** * Instantiate the SDK. * @param {SdkConfiguration} config - The SDK configuration. */ constructor(config: SdkConfiguration); /** * Flushes the cache for the tenant. * @param {AbortController} [cancellationToken] - Optional cancellation token for cancelling the request. * @returns {Promise} */ flush: (cancellationToken?: AbortController) => Promise; }