UNPKG

372 BTypeScriptView Raw
1import { type HTMLChakraProps } from "../../styled-system";
2export interface BoxProps extends HTMLChakraProps<"div"> {
3}
4/**
5 * Box is the most abstract component on top of which other chakra
6 * components are built. It renders a `div` element by default.
7 *
8 * @see Docs https://chakra-ui.com/box
9 */
10export declare const Box: import("../..").ChakraComponent<"div", {}>;