import { AbstractCommand } from "@twixtlabs/lambda-cqrs-poc"; export declare abstract class TenantSettingsCommand extends AbstractCommand { readonly tenantId: string; constructor({ commandName, tenantId }: { commandName: string; tenantId: string; }); }