/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ /** * Interface for generating tenant keys. */ export interface ITenantKeyGenerator { /** * Generates a tenant key. */ generateTenantKey(): string; } export declare class TenantKeyGenerator implements ITenantKeyGenerator { generateTenantKey(): string; } //# sourceMappingURL=tenantKeyGenerator.d.ts.map