export interface FormField {
    [x: string]: any;
    value: any;
    label: any;
    defaultCheckedKeys: any;
    type: string;
    show?: boolean;
    columnName: string;
    defaultValue?: any;
    attributes?: any;
    options?: any;
    disabled?: boolean;
    methods?: {
        [key: string]: () => void;
    };
    radioGroups?: any[];
}
export interface Model {
    [key: string]: any;
}
