import { Base } from '../BaseEntity'; import { ContactChannelType } from './ContactChannel'; /** 通知消息的模板 */ export declare class NotificationTemplate extends Base { code: string; channelType: ContactChannelType; content: string; detail: Record; name: string; constructor(props?: Partial); }