import { type VariantProps } from 'class-variance-authority';
import React, { type PropsWithChildren } from 'react';
export declare const boxVariants: (props?: ({
    variant?: "container" | null | undefined;
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
export type BoxProps = PropsWithChildren & React.HTMLAttributes<HTMLDivElement> & VariantProps<typeof boxVariants>;
export declare const Box: React.ForwardRefExoticComponent<{
    children?: React.ReactNode | undefined;
} & React.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
    variant?: "container" | null | undefined;
} & import("class-variance-authority/types").ClassProp) | undefined) => string> & React.RefAttributes<HTMLDivElement>>;
