export type AlignContent = | 'stretch' | 'center' | 'flex-start' | 'flex-end' | 'space-between' | 'space-around' | 'space-evenly' | 'initial' | 'inherit'; export type AlignItems = | 'stretch' | 'center' | 'flex-start' | 'flex-end' | 'baseline' | 'initial' | 'inherit'; export type AlignSelf = | 'auto' | 'stretch' | 'center' | 'flex-start' | 'flex-end' | 'baseline' | 'initial' | 'inherit'; export type Display = | 'inline' | 'block' | 'contents' | 'flex' | 'grid' | 'inline-block' | 'inline-flex' | 'inline-grid' | 'inline-table' | 'list-item' | 'run-in' | 'table' | 'table-caption' | 'table-column-group' | 'table-header-group' | 'table-footer-group' | 'table-row-group' | 'table-cell' | 'table-column' | 'table-row' | 'none' | 'initial' | 'inherit'; export type FlexBasis = number | 'auto' | 'initial' | 'inherit'; export type FlexDirection = | 'row' | 'row-reverse' | 'column' | 'column-reverse' | 'initial' | 'inherit'; export type FlexGrow = number | 'initial' | 'inherit'; export type FlexShrink = number | 'initial' | 'inherit'; export type FlexWrap = | 'nowrap' | 'wrap' | 'wrap-reverse' | 'initial' | 'inherit'; export type JustifyContent = | 'flex-start' | 'flex-end' | 'center' | 'space-between' | 'space-around' | 'space-evenly' | 'initial' | 'inherit'; export type JustifySelf = | 'auto' | 'stretch' | 'center' | 'flex-start' | 'flex-end' | 'baseline' | 'initial' | 'inherit'; export type Unit = '%' | 'em' | 'rem' | 'px' | 'vh' | 'vw';