export interface BaseEntitySchema { name: string; _name?: string; input?: Record; output?: Record; event?: Record; } export interface CanIUseSchema { name: string; input?: string; output?: string; event?: string; } export declare const channelMessageSchema: { command: boolean; reqid: boolean; sdkVersion: boolean; seqid: boolean; source: boolean; target: boolean; forwardedFor: boolean; timestamp: boolean; version: boolean; };