import type { TenantAgent } from './TenantAgent' import type { TenantConfig } from './models/TenantConfig' import type { ModulesMap } from '@aries-framework/core' export interface GetTenantAgentOptions { tenantId: string } export type WithTenantAgentCallback = ( tenantAgent: TenantAgent ) => Promise export interface CreateTenantOptions { config: Omit }