import * as React from 'react'; import { ContainerProps } from '../Container'; import { PageContentWrapperProps } from './PageContentWrapper'; export declare type LocalPageContentProps = { /** Props to spread onto the wrapper component. */ wrapperProps?: Partial; }; export declare type PageContentProps = ContainerProps & LocalPageContentProps; export declare const PageContent: React.ForwardRefExoticComponent & React.RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; }) => any; };