export declare class FormControlUtilsService { /** * Method to check if all fields have value when create record * @param lstFields List all fields that need to check * @param obj object to check value * @return true , if all fields in the object has value */ isValidRequiredFields(lstFields: string[], obj: any): boolean; }