import { default as React, ReactNode } from 'react'; export type BoxProps = { /** * Content of the Box */ children: ReactNode; /** * The visual style of the Box * @default primary */ variant?: 'secondary' | 'primary'; /** * className for the element */ className?: string; /** * ARIA role for the Box */ role?: string; }; /** * Generic container for grouping other components */ export declare const Box: ({ children, className, variant, ...rest }: BoxProps) => React.JSX.Element; //# sourceMappingURL=Box.d.ts.map