import { ElementType, AllHTMLAttributes } from 'react';
import { Atoms } from "../../atoms.css";
import { clsx } from 'utils';
export interface BoxProps extends Omit, 'as' | 'content' | 'height' | 'translate' | 'color' | 'width' | 'cursor' | 'span' | 'className'>, Atoms {
/**
* Polymorphic prop can be use to change the underlying element.
*/
as?: ElementType;
/**
* Forwards styles to the child component
*/
asChild?: boolean;
className?: Parameters[0];
}
/**
* Box is a primitive component that all other components inherit from
*/
export declare const Box: import("react").ForwardRefExoticComponent>;