import { JSX } from "solid-js"; import { BsPrefixProps, BsPrefixRefForwardingComponent } from "./helpers"; export interface ContainerProps extends BsPrefixProps, JSX.HTMLAttributes { fluid?: boolean | "sm" | "md" | "lg" | "xl" | "xxl"; } declare const Container: BsPrefixRefForwardingComponent<"div", ContainerProps>; export default Container;