export declare type MessagePropsToSms = (type: string, props: Record) => { signName?: string; params?: Record; paramsArray?: Array; } | undefined; declare type WechatKeywordNum = 'keyword1' | 'keyword2' | 'keyword3' | 'keyword4' | 'keyword5' | 'keyword6' | 'keyword7'; export declare type MessagePropsToWechat = (type: string, props: Record, appId?: string) => ({ first?: { value: string; color?: string; }; remark?: { value: string; color?: string; }; } & { [K in WechatKeywordNum]?: { value: string; color?: string; }; }) | undefined; export {};