export interface Field {
    name: string;
    label: string;
    component?: {
        label: string;
        [key: string]: any;
    };
}
