import React from 'react'; /** @public */ export type BottomLinkClassKey = 'root' | 'boxTitle' | 'arrow'; /** @public */ export type BottomLinkProps = { link: string; title: string; onClick?: (event: React.MouseEvent) => void; }; /** * Footer with link used in {@link InfoCard } and {@link TabbedCard} * * @public * */ export declare function BottomLink(props: BottomLinkProps): React.JSX.Element;