import type { SystemProps } from '../utils/systemProps'; import React from 'react'; declare type BoxDOMProps = React.ComponentPropsWithRef<'div'>; export declare type BoxSystemProps = SystemProps; export declare type BoxProps = BoxDOMProps & BoxSystemProps & { as?: React.ElementType; }; export declare const boxSystemProps: (props: any) => any[]; export declare const boxSystemPropNames: string[]; export declare const Box: React.ForwardRefExoticComponent & React.RefAttributes>; export {};