import React from 'react'; import { ContentHeaderProps } from './ContentHeader'; import { ContentFooterProps } from './ContentFooter'; interface WrapperContentProps { className?: string; loading?: boolean; loadingTip?: string; children?: React.ReactNode; style?: React.CSSProperties; noMargin?: boolean; light?: boolean; header?: ContentHeaderProps; watermarkProps?: any; footer?: ContentFooterProps; codes?: any[]; permissionCodes?: any[] | undefined | [] | null; } declare const WrapperContent: React.ForwardRefExoticComponent>; export default WrapperContent;