import type { CSSProperties, ReactNode } from "react";
declare const MaxWidthWrapper: ({ className, children, style, }: {
    className?: string;
    children: ReactNode;
    style?: CSSProperties;
}) => import("react/jsx-runtime").JSX.Element;
export { MaxWidthWrapper };
