import { FormNotifyService } from './form-notify.service';

export declare class DataCheckService {
    private formNotifyService;
    constructor(formNotifyService: FormNotifyService);
    checkBeforeView(id: string): true | Promise<never>;
    checkBeforeEdit(id: string): true | Promise<never>;
    ifSkipCheck(id: string): boolean;
}
