import React from 'react';
export interface ContainerProps {
    maxWidth?: 'sm' | 'md' | 'lg' | 'xl' | '2xl' | 'full';
    padding?: 'none' | 'sm' | 'md' | 'lg' | 'xl';
    center?: boolean;
    fluid?: boolean;
    children: React.ReactNode;
    className?: string;
}
export declare const Container: React.FC<ContainerProps>;
//# sourceMappingURL=Container.d.ts.map