export type ChannelType = "email" | "sms" | "push" | "inbox" | "slack" | "msteams"; export interface Channel { label: string; value: ChannelType; icon?: React.ReactNode; } export declare const CHANNELS: Channel[];