/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes, PropsWithChildren } from 'react'; export type TabNavigationProps = { /** The accessible name for the navigation. */ accessibleName?: string; /** * Connects the component with an internal element that defines its accessible name. * Note: must be unique for the page. */ accessibleNameId?: string; /** The direction in which the links are laid out. */ orientation?: 'horizontal' | 'vertical'; } & PropsWithChildren>; /** * @see {@link https://designsystem.amsterdam/?path=/docs/components-navigation-tab-navigation--docs Tab Navigation docs at Amsterdam Design System} */ export declare const TabNavigation: import("react").ForwardRefExoticComponent<{ /** The accessible name for the navigation. */ accessibleName?: string; /** * Connects the component with an internal element that defines its accessible name. * Note: must be unique for the page. */ accessibleNameId?: string; /** The direction in which the links are laid out. */ orientation?: "horizontal" | "vertical"; } & HTMLAttributes & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes> & { Link: import("react").ForwardRefExoticComponent<{ icon?: import("..").IconProps["svg"]; linkComponent?: import("react").ComponentType>; } & import("react").AnchorHTMLAttributes & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>; List: import("react").ForwardRefExoticComponent & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>; };