/** Controls the direction of flex items: horizontal (`'row'`) or vertical (`'column'`). */ export type KbqFlexDirection = 'row' | 'column'; /** Controls flex item wrapping: single-line (`'nowrap'`) or multi-line (`'wrap'`). */ export type KbqFlexWrap = 'nowrap' | 'wrap';