import { ForwardRefExoticComponent, ReactNode } from 'react';
import { BaseBgMode, BaseProps, TypeMark } from '../types';
export interface CnLayoutContentProps extends BaseProps, BaseBgMode {
    children?: ReactNode;
    minHeight?: number | string;
    noPadding?: boolean;
}
export type IPageContent = ForwardRefExoticComponent<CnLayoutContentProps> & TypeMark;
declare const RefPageContent: IPageContent;
export default RefPageContent;
