import type { ReactNode } from 'react'; import type { CommonProps } from '../../types.js'; export interface BoxProps extends CommonProps { /** The contents of the box. */ children: ReactNode; } /** A primitive layout component that exposes style props. */ declare const _Box: (props: BoxProps & import("react").RefAttributes & import("../../../with-style-props.js").StyleProps) => import("react").JSX.Element | null; export { _Box as Box }; //# sourceMappingURL=box.d.ts.map