import type { ReactElement } from "react";
import type { DesignSystemLinkHref } from "../../routing";
import type { PageTitleBadge, PageTitleStatusBadge } from "../Page/index";
import type { HeaderPrimaryLogo } from "./HeaderPrimary";
export interface LeadingSegmentProps {
    logo?: HeaderPrimaryLogo;
    title: string;
    titleIcon?: ReactElement;
    titleBadges?: (PageTitleBadge | PageTitleStatusBadge)[];
    logoLinkURL?: DesignSystemLinkHref;
}
export declare function LeadingSegment({ logo, logoLinkURL, title, titleIcon, titleBadges }: LeadingSegmentProps): import("react/jsx-runtime").JSX.Element;
