import { HTMLProps, PropsWithChildren } from 'react';
export type MainColumnProps = PropsWithChildren<{
/**
* Custom root classname
*/
className?: string;
} & Omit, 'ref'>>;
export declare const MainColumnLayout: (props: {
/**
* Custom root classname
*/
className?: string | undefined;
} & Omit, "ref"> & {
children?: import("react").ReactNode;
} & import("react").RefAttributes) => import("react").ReactElement> | null;