///
import { Breakpoint } from '../types';
import { BoxProps } from '../Box';
export declare type LocalContainerProps = {
/** Sets the alignment of the container. */
align?: 'left' | 'right' | 'center';
/** Sets the breakpoint width of the container. */
breakpoint?: Breakpoint;
/** Indicates if the container is fluid. */
isFluid?: boolean;
/** Indicates if the container is of a layout type. */
isLayout?: boolean;
};
export declare type ContainerProps = BoxProps & LocalContainerProps;
export declare const Container: import("react").ForwardRefExoticComponent & import("react").RefAttributes> & {
displayName?: string;
useProps: (props?: Partial, config?: {
disableCSSProps?: string[];
themeKey?: string;
}) => any;
};