import { FieldModel } from '../../grit-factory/pg-component-factory/field-model'; export declare type LayoutModelType = 'grid-form' | any; export interface ColumnModel { fieldModel: FieldModel; width?: number; marginBottom?: string; marginTop?: string; marginLeft?: string; marginRight?: string; } export interface RowModel { sectionId?: string; columns: ColumnModel[]; marginBottom?: string; marginTop?: string; marginLeft?: string; marginRight?: string; } export interface GridFormModel { sections?: { title: string; id: string; }[]; rows?: RowModel[]; id?: string; paddingLeft?: string; paddingTop?: string; paddingRight?: string; paddingBottom?: string; }