import { SxProp } from './Base'; import { ForwardRefComponent } from './polymorphic'; import { AllSystemProps } from './system-props'; declare const defaultElement = "div"; export declare type BoxProps = SxProp & AllSystemProps; declare type BoxComponent = ForwardRefComponent; export declare const Box: BoxComponent; export {};