import React from 'react'; import { BreadcrumbGroupProps } from '../../../breadcrumb-group/interfaces'; interface ToolbarSlotProps { className?: string; style?: React.CSSProperties; children?: React.ReactNode; } export declare const ToolbarSlot: React.ForwardRefExoticComponent>; interface NotificationsSlotProps { className?: string; style?: React.CSSProperties; children?: React.ReactNode; } export declare const NotificationsSlot: React.ForwardRefExoticComponent>; interface BreadcrumbsSlotProps { ownBreadcrumbs: React.ReactNode; discoveredBreadcrumbs?: BreadcrumbGroupProps | null; } export declare function BreadcrumbsSlot({ ownBreadcrumbs, discoveredBreadcrumbs }: BreadcrumbsSlotProps): JSX.Element; export {};