/// <reference types="react" />
interface sectionCTA {
    label: string;
    title: string;
    href: string;
}
export interface Section {
    icon?: JSX.Element;
    title: string;
    subtitle: string | JSX.Element;
    cta: sectionCTA;
}
export interface HorizontalNavProps {
    sections: Array<Section>;
}
export declare const HorizontalNav: ({ sections }: HorizontalNavProps) => import("react/jsx-runtime").JSX.Element;
export {};
