import { ComponentPropsWithRef, ElementType, PropsWithChildren } from 'react'; export type BoxProps = { as?: T; } & PropsWithChildren, 'as'>>; /** * @param {Object} props * @param {ReactNode} props.children - 박스 내부에 렌더링할 컨텐츠 * @param {ElementType} [props.as='div'] - 렌더링할 HTML 요소 * @param {string} [props.className] - 추가적인 CSS 클래스 */ declare const Box: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export { Box };