import { ElementProps } from "../../../../types/shared.mjs"; import React from "react"; //#region src/components/styles/layout/container/Container.d.ts type ContainerProps = { /** * `set-width` will be deprecated in the future. Use `default` instead. */ variant?: 'fluid' | 'set-width'; } & ElementProps<'div'>; declare const Container: { ({ className, variant, ...props }: ContainerProps): React.JSX.Element; displayName: string; }; //#endregion export { Container, ContainerProps };