/// export interface BoxProps { is?: React.ComponentType<{ [key: string]: unknown; }> | string; testId?: string; className?: string; style?: {}; children?: any; [key: string]: any; } export declare let Box: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default Box;