import { HTMLAttributes } from 'react';
import { ViewPort } from '@/types/cskTypes';
type AvailableAlignSelf = 'auto' | 'start' | 'end' | 'center' | 'stretch';
type AvailableShrink = '0' | '1';
export type FlexItemProps = HTMLAttributes & {
alignSelf?: AvailableAlignSelf | ViewPort;
shrink?: AvailableShrink;
};
export { FlexItem as default } from './flex-item';