export type BoxOwnProps = { as?: E; }; export type BoxProps = BoxOwnProps & Omit, keyof BoxOwnProps>; declare const defaultElement = "div"; export declare function Box(props: BoxProps): import("react").JSX.Element; export {};