import { Ref, RefAttributes, ReactNode } from "react"; import { DOMProps } from "@react-types/shared"; import { ForwardedRefComponent } from "../../types/components"; export declare type ContainerElementType = HTMLDivElement; export declare type ContainerRef = Ref; export interface ContainerProps extends DOMProps, RefAttributes { id?: string; /** Custom class name for setting specific CSS */ className?: string; /** HTML element for the Box */ elementType?: "div" | "span"; children?: ReactNode; } declare const Container: ForwardedRefComponent; export { Container };