import { type PropsWithChildren } from 'react'; import { type BreadcrumbItemRecipeVariants } from './components/BreadcrumbItem.css'; export type BreadcrumbSize = NonNullable['size']>; export type BreadcrumbContextValue = { size: BreadcrumbSize; }; export declare function BreadcrumbProvider({ children, value }: PropsWithChildren<{ value: BreadcrumbContextValue; }>): import("react/jsx-runtime").JSX.Element; export declare namespace BreadcrumbProvider { var displayName: string; } export declare const useBreadcrumb: () => BreadcrumbContextValue; //# sourceMappingURL=Breadcrumb.context.d.ts.map