import React, { ComponentProps, FC } from 'react';
import { ListItem } from './ListItem';
export declare const TooltipLinkList: FC<Props>;
declare type AnyProps = Record<string, any>;
declare type LinkWrapperType = (props: AnyProps) => React.ReactElement<any, any>;
interface Props {
    links: Omit<ComponentProps<typeof ListItem>, 'LinkWrapper'>[];
    LinkWrapper?: LinkWrapperType;
}
export {};
//# sourceMappingURL=TooltipLinkList.d.ts.map