import * as React from 'react';
export interface ContentProps extends React.HTMLAttributes<HTMLDivElement> {
    listPrefixCls: string;
    height: number;
    topNoticeHeight?: number;
    topNoticeWidth?: number;
}
declare const Content: React.ForwardRefExoticComponent<ContentProps & React.RefAttributes<HTMLDivElement>>;
export default Content;
