import { OmitInternalProps } from '../../type-utils/omit-props'; import { BoxProps } from '@chakra-ui/react/box'; /** * Props for the Spacer component. * Extends Chakra UI Box props with flexGrow automatically set to 1. */ export type SpacerProps = OmitInternalProps & { /** * Reference to the spacer element */ ref?: React.Ref; };