export type FormLayout = 'horizontal' | 'horizontal-inline' | 'vertical' | 'vertical-inline' | 'compact'; export type ControlLayout = 'vertical' | 'horizontal' | 'compact'; export type ControlStatus = 'neutral' | 'error' | 'success'; export type ControlWidth = 'shrink' | 'stretch' | undefined;