import { type HtmlAntdProps } from '../styled-factory';
export interface BoxProps extends HtmlAntdProps<'div'> {
}
/**
* Box is the most abstract component on top of which other antd
* components are built. It renders a `div` element by default.
*/
export declare const Box: import("../styled-factory").StyledAntdComponent<"div", {}>;