import { DeviceBreakpointsType } from '../../types/breakpoints/breakpoints';
type OperativeLayoutContainerType = {
    maxWidthParentContainer?: {
        [key in DeviceBreakpointsType]?: string;
    };
    $width: string;
};
type OperativeLayoutColors = {
    $color?: string;
    $align?: string;
    $paddingBottom?: string;
    $margin?: string;
    $height?: string;
    $width?: {
        [key in DeviceBreakpointsType]?: string;
    };
    $contentOverflowColor?: boolean;
};
export declare const OperativeLayoutColor: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, OperativeLayoutColors>> & string;
export declare const OperativeLayoutContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, OperativeLayoutContainerType>> & string;
export {};
