import React from 'react';
export interface BottomLink {
    text: string;
    href: string;
}
interface BottomLinksProps {
    links: BottomLink[];
}
/**
 * A compact, centered footer row of text links separated by a dot
 * (e.g. `Terms • Help`). Each link opens in a new tab and brightens on hover.
 */
export declare const BottomLinks: ({ links }: BottomLinksProps) => React.JSX.Element;
export {};
