/// import { FlexProps } from '../../Flex'; import { GridBoxProps } from '../../Grid'; type SkeletonRectBoxProps = FlexProps & { readonly type?: 'box'; }; interface SkeletonRectGridBoxProps extends GridBoxProps { readonly type: 'grid'; } export type SkeletonRectProps = SkeletonRectBoxProps | SkeletonRectGridBoxProps; export {};