import * as React from "react"; import { ConfigConsumerProps } from "../Config"; export interface INotiContainerProps { /** * 组件包含的内容 * * @default null **/ children?: React.ReactNode; /** * 自定义组件类名 * * @default '' **/ className?: string; /** * 显示位置 * * @default "top-right" **/ position?: "top-left" | "top-center" | "top-right" | "bottom-left" | "bottom-center" | "bottom-right"; /** * 默认前缀 * * @default "lg" **/ prefixCls?: string; } declare class NotiContainer extends React.PureComponent { static defaultProps: { children: null; position: string; className: string; }; constructor(props: INotiContainerProps); renderNotiContainer: ({ getPrefixCls }: ConfigConsumerProps) => JSX.Element; render(): JSX.Element; } export default NotiContainer;