import { AbstractQuery } from "@twixtlabs/lambda-cqrs-poc"; export declare class GetTenantChannelQuery extends AbstractQuery { static NAME: string; readonly tenantId: string; readonly channelId: string; readonly platform: string; constructor({ tenantId, channelId, platform }: { tenantId: string; channelId: string; platform: string; }); } export interface GetTenantChannelQueryResponse { channel: null | { tenantId: string; channelId: string; channelName: string; platform: string; tags: string[]; }; }