1 | import * as React from 'react';
|
2 | import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
3 | export interface BreadcrumbItemProps extends BsPrefixProps, Omit<React.HTMLAttributes<HTMLElement>, 'title'> {
|
4 | active?: boolean;
|
5 | href?: string;
|
6 | linkAs?: React.ElementType;
|
7 | target?: string;
|
8 | title?: React.ReactNode;
|
9 | linkProps?: Record<string, any>;
|
10 | }
|
11 | declare const BreadcrumbItem: BsPrefixRefForwardingComponent<'li', BreadcrumbItemProps>;
|
12 | export default BreadcrumbItem;
|