import * as React from "react"; interface IBreadcrumbItemProps { /** * 默认前缀 * * @default "lg" **/ prefixCls?: string; /** * 分隔符 * * @default "/" */ separator?: string; } interface IBreadcrumbItemState { } export declare class BreadcrumbItem extends React.PureComponent { static defaultProps: { prefixCls: string; separator: string; }; constructor(props: IBreadcrumbItemProps); render(): JSX.Element; } export {};