import React from "react"; export interface BoxProps extends React.HTMLAttributes { /** * The HTML element or React component to render as */ as?: keyof JSX.IntrinsicElements; /** * The content to render inside the box */ children?: React.ReactNode; /** * Accessibility label for screen readers */ "aria-label"?: string; /** * Accessibility role for semantic meaning */ role?: string; /** * Whether to respect user's motion preferences */ respectMotionPreference?: boolean; } export declare const Box: React.ForwardRefExoticComponent>; //# sourceMappingURL=Box.d.ts.map