import { IActionPassData, IFormStructure } from '../interface/form-structure'; import { IFieldShema } from '@usteknoloji/noosgrid'; export declare class FormLoader { static loadFormOutData(formJson: IFormStructure, fieldStructure: IFieldShema[], outData: any): boolean; static loadFormFromRemoteData(formJson: IFormStructure, fieldStructure: IFieldShema[], rowData: any[], actionData: IActionPassData): void; static setUpForm(formJson: IFormStructure): void; static loadActionData(formJson: IFormStructure, actionData: IActionPassData): void; }