import { BoxProps } from './types/Box.props.ts'; import { FC } from 'react'; /** * Polymorphic layout primitive. Maps design-token props (padding, margin, * gap, border, background, box-shadow) to Vanilla Extract atomic classes * and passes layout props (display, flex, position, overflow, text-align) as inline * styles. Use the `as` prop to change the rendered element. */ declare const Box: FC; export default Box;