import React from 'react'; import { PropsTypes } from '@orca-fe/deye-typings'; import './OrcaBreadcrumb.less'; export interface OrcaBreadcrumbProps { separator?: string; usePrefix?: boolean; prefixTitle?: string; prefixUrl?: string; suffix?: BreadcrumbSuffixType[]; style?: React.CSSProperties; } declare const OrcaBreadcrumb: { (props: OrcaBreadcrumbProps): JSX.Element; title: string; propsDef: PropsTypes[]; defaultProps: {}; }; declare type BreadcrumbSuffixType = { key: string; path?: string; text: string; }; export default OrcaBreadcrumb;