import * as react_jsx_runtime0 from "react/jsx-runtime"; //#region src/react/file-browser/file-breadcrumb.d.ts /** Props for the FileBreadcrumb component */ interface FileBreadcrumbProps extends Omit, "children"> { /** Label for the root breadcrumb item */ rootLabel: string; /** Path segments after the root */ segments: string[]; /** Called when the root breadcrumb is clicked */ onNavigateToRoot: () => void; /** Called when a segment breadcrumb is clicked (receives segment index) */ onNavigateToSegment: (index: number) => void; } /** Path-aware breadcrumb navigation built on top of Breadcrumb primitives */ declare function FileBreadcrumb({ rootLabel, segments, onNavigateToRoot, onNavigateToSegment, ...props }: FileBreadcrumbProps): react_jsx_runtime0.JSX.Element; //#endregion export { FileBreadcrumb, FileBreadcrumbProps }; //# sourceMappingURL=file-breadcrumb.d.ts.map