import { CSSProperties } from 'vue'; export interface ContentProps { listPrefixCls: string; height: number; topNoticeHeight?: number; topNoticeWidth?: number; className?: string; style?: CSSProperties; } declare const Content: import('vue').DefineSetupFnComponent; export default Content;