import type { BoxProps } from "../Box"; interface DisplayProps { display?: "flex" | "inline-flex"; } export type FlexProps = Omit & DisplayProps; export {};