import * as React from "react"; import type { DistributiveOmit } from "../../utils/styled"; import { Box, type BoxProps } from "../Box/Box"; /** * @deprecated Use `HStack` instead. */ export type ColumnsProps = DistributiveOmit; /** * @deprecated Use `HStack` instead. */ export const Columns = React.forwardRef((props, ref) => { return ( ); }); /** * @deprecated Use `HStack` instead. */ export type ColumnProps = DistributiveOmit & { width?: BoxProps["width"] | "content"; }; /** * @deprecated Use `HStack` instead. */ export const Column = React.forwardRef((props, ref) => { const { width, ...otherProps } = props; return ( ); });