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