import * as React from 'react'; import { BsPrefixProps, BsPrefixRefForwardingComponent } from '../utils/helpers'; export interface FooterTopItemProps extends Omit, React.HTMLAttributes { /** Category name of each item */ itemTitle?: React.ReactNode; /** Forwards title className to .title */ titleClass?: string; /** Forwards links className to .links */ linksClass?: string; } export declare const FooterTopItem: BsPrefixRefForwardingComponent<'div', FooterTopItemProps>; export default FooterTopItem;