import type { HTMLCoralProps } from "coral-system"; export interface BoxProps extends HTMLCoralProps<"div"> { /** * 是否渲染 */ isRender?: boolean; } export declare const Box: import("coral-system/dist/esm/types").ComponentWithAs<"div", BoxProps>;