import type { FC, HTMLAttributes, ReactNode, Ref } from 'react'; export interface RemoteShellBreadcrumbProps extends HTMLAttributes { ref?: Ref; children?: ReactNode; } export declare const RemoteShellBreadcrumb: FC;