import { type CSSProperties, type HTMLAttributes, type ReactNode, type Ref } from 'react';
type ContainerProps = {
maxWidth?: string;
padding?: string;
asChild?: boolean;
className?: string;
style?: CSSProperties;
children?: ReactNode;
ref?: Ref;
} & Omit, 'className' | 'style'>;
declare const Container: ({ maxWidth, padding, asChild, className, style, children, ref, ...rest }: ContainerProps) => import("react/jsx-runtime").JSX.Element;
export { Container };
export type { ContainerProps };