import React from "react"; export declare type HeaderLinkId = "travel" | "rooms" | "cars" | "stories" | "deals" | "activities" | "travelHacks"; export declare type HeaderLinkQuery = Record; export declare type HeaderLinkObj = { id: HeaderLinkId; badge?: string; badgeCount?: string; url?: string; queryParams?: HeaderLinkQuery; }; export declare type HtmlProps = { rel?: string; }; declare type TranslationValues = { companyName: string | number; }; export declare type HeaderLink = { id: HeaderLinkId; translation: string; translationValues?: TranslationValues; url: string; icon: React.ReactNode; htmlProps?: HtmlProps; external?: boolean; badge?: string; badgeCount?: string; }; export declare type HeaderLinksContext = "booking" | "kiwicom" | string; export declare type HeaderLinkValues = { languageId: string; currencyId?: string; }; export declare type Props = { context: HeaderLinksContext; links: (HeaderLinkId | HeaderLinkObj)[]; staticServices?: HeaderLink[]; values: HeaderLinkValues; active?: string; }; declare const HeaderLinks: ({ context, values, links, staticServices, active }: Props) => JSX.Element | null; export default HeaderLinks;