import * as React from "react"; import type { DistributiveOmit } from "../../utils/styled"; import { Box, type BoxProps } from "../Box/Box"; /** * @deprecated Use `HStack` instead. */ export type InlineProps = DistributiveOmit; /** * @deprecated Use `HStack` instead. */ export const Inline = React.forwardRef((props, ref) => { return ( ); });