import { FormNotifyService } from './form-notify.service'; declare class FormNotifyStrategyService { /** * 消息提示 * @param formNotifyService formNotifyService * @param content content */ static info(formNotifyService: FormNotifyService, content: string): void; /** * 成功提示 * @param formNotifyService formNotifyService * @param content content */ static success(formNotifyService: FormNotifyService, content: string): void; private static querystring; } export { FormNotifyStrategyService };