import type { BCMSCloudSdk } from '../../../sdk/sdk/main'; import type { InstanceDomain, InstanceDomainCreateData, InstanceDomainUpdateData } from '../../../b-types/instance'; export declare class InstanceDomainHandler { sdk: BCMSCloudSdk; private baseUrl; private storeKey; private getAllLatch; private getAllQueue; private getQueue; constructor(sdk: BCMSCloudSdk); getAll(data: { instanceId: string; skipCache?: boolean; }): Promise; get(data: { instanceId: string; id: string; skipCache?: boolean; }): Promise; create(data: InstanceDomainCreateData & { instanceId: string; }): Promise; update(data: InstanceDomainUpdateData & { instanceId: string; }): Promise; deleteById(data: { instanceId: string; id: string; }): Promise; }