import { TenancyStorageOperations, Tenancy } from "./types"; export interface TenancyConfig { tenant: string | null; storageOperations: TenancyStorageOperations; multiTenancy?: boolean; incrementWcpTenants: () => Promise; decrementWcpTenants: () => Promise; } export declare function createTenancy({ tenant, storageOperations, multiTenancy, incrementWcpTenants, decrementWcpTenants }: TenancyConfig): Promise;