export interface FooterLinksProps {
    /** The columns of the nav links */
    items: FooterLinksNavProps[];
}
declare const FooterLinks: (footerLinks: FooterLinksProps) => any;
export interface FooterLinksNavProps {
    /** The text for the heading above the column of links, visually hidden from users */
    heading: string;
    /** The heading level above the column of links, default to 2 */
    headingLevel?: number;
    /** The links in the column */
    links: FooterLinkProps[];
}
export interface FooterLinkProps {
    /** The URL for the link */
    href: string;
    /** The text for the link */
    text: string;
}
export default FooterLinks;
