import { default as React } from 'react';
export interface ContainerProps {
/** Container content */
children: React.ReactNode;
/** Max width variant */
size?: 'sm' | 'md' | 'lg' | 'xl' | '2xl' | 'full';
/** Center container horizontally */
center?: boolean;
/** Padding */
padding?: 'none' | 'sm' | 'md' | 'lg';
/** Additional className */
className?: string;
}
/**
* Container Component
*
* Responsive container with max-width constraints and horizontal centering.
* Useful for creating consistent page layouts and content areas.
*
* @example
* ```tsx
*
* Page Content
*
* ```
*
* @example
* ```tsx
*
* Centered content with large max-width
*
* ```
*/
export declare const Container: React.FC;
//# sourceMappingURL=container.d.ts.map