import { ReactNode } from 'react'; export interface ContainerProps { fluid?: boolean; children?: ReactNode; } export declare const Container: ({ fluid, children, ...rest }: ContainerProps) => import("react/jsx-runtime").JSX.Element;