import { FunctionComponent, HTMLProps, ReactNode, ReactType } from 'react'; export interface BreadcrumbHeadingProps extends HTMLProps { children?: ReactNode; className?: string; to?: string; target?: string; component?: ReactType; } declare const BreeadcrumbHeading: FunctionComponent; export default BreeadcrumbHeading;