import { Ref, RefAttributes, ReactNode } from "react"; import { DOMProps } from "@react-types/shared"; import { ForwardedRefComponent } from "../../types/components"; export declare type BoxElementType = HTMLDivElement; export interface BoxProps extends DOMProps, RefAttributes { children?: ReactNode; /** Custom class name for setting specific CSS */ className?: string; /** HTML element for the Box */ elementType?: "div" | "span"; } export declare type BoxRef = Ref; declare const Box: ForwardedRefComponent; export { Box };