import { Base } from '../../utils'; export declare const ContactChannelTypeMap: Record; export declare const ContactChannelTypeList: string[]; export type ContactChannelType = typeof ContactChannelTypeList[number]; export declare class ContactChannel extends Base { phoneNumber?: string; mail?: string; dingTalkWebhook?: string; wechatWorkWebhook?: string; wechatOpenId?: string; type: ContactChannelType; value?: string; getValue(): string; constructor(data?: Partial); }