projects/ng-dynamic-forms/core/src/lib/model/misc/dynamic-form-control-layout.model.ts
        
                            Properties | 
                    
                        [key: string]:    
                     | 
                
| children | 
                                        children:         
                                     | 
                                
                                            Type :         string
                                         | 
                                    
| Optional | 
| container | 
                                        container:         
                                     | 
                                
                                            Type :         string
                                         | 
                                    
| Optional | 
| control | 
                                        control:         
                                     | 
                                
                                            Type :         string
                                         | 
                                    
| Optional | 
| errors | 
                                        errors:         
                                     | 
                                
                                            Type :         string
                                         | 
                                    
| Optional | 
| group | 
                                        group:         
                                     | 
                                
                                            Type :         string
                                         | 
                                    
| Optional | 
| hint | 
                                        hint:         
                                     | 
                                
                                            Type :         string
                                         | 
                                    
| Optional | 
| host | 
                                        host:         
                                     | 
                                
                                            Type :         string
                                         | 
                                    
| Optional | 
| label | 
                                        label:         
                                     | 
                                
                                            Type :         string
                                         | 
                                    
| Optional | 
| option | 
                                        option:         
                                     | 
                                
                                            Type :         string
                                         | 
                                    
| Optional | 
export interface DynamicFormControlLayoutConfig {
    children?: string;
    container?: string;
    control?: string;
    errors?: string;
    group?: string;
    hint?: string;
    host?: string;
    label?: string;
    option?: string;
    [key: string]: string | undefined;
}
export interface DynamicFormControlLayout {
    element?: DynamicFormControlLayoutConfig;
    grid?: DynamicFormControlLayoutConfig;
    [key: string]: DynamicFormControlLayoutConfig | undefined;
}
export type DynamicFormControlLayoutPlace = keyof DynamicFormControlLayoutConfig;
export type DynamicFormControlLayoutContext = keyof DynamicFormControlLayout;