import { ComponentProps, ReactNode } from "react"; import { InternalProps, OmitInternalProps, SlotProps, StyledHtmlAttributes } from "../../shared"; export interface InnerBoxProps extends SlotProps, InternalProps, StyledHtmlAttributes { /** * @ignore */ children?: ReactNode; } export declare function InnerBox(props: InnerBoxProps): JSX.Element; export declare namespace InnerBox { var defaultElement: string; } /** * A box is a general purpose component that can be used to compose new components, use the slot system or render style props. * * [Documentation](https://orbit.sharegate.design/?path=/docs/box--page) */ export declare const Box: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export declare type BoxProps = ComponentProps;