UNPKG

@rc-component/notification

Version:
10 lines (9 loc) 349 B
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;