import * as React from "react"; import { ConfigConsumerProps } from "../Config"; interface Props { /** * 自定义组件类名 * * @default "" **/ className?: string; /** * 默认前缀 * * @default "lg" **/ prefixCls?: string; /** * 面包屑内容 * * @default null **/ children: React.ReactNode; } interface State { } export declare class Breadcrumb extends React.PureComponent { static defaultProps: { className: string; }; constructor(props: Props); renderBreadcrumb: ({ getPrefixCls }: ConfigConsumerProps) => JSX.Element; render(): JSX.Element; } export {};