/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes, PropsWithChildren } from 'react'; export type TabsProps = { /** The identifier of the initially active Tab. Corresponds to its Panel `id` value. */ activeTab?: string; onTabChange?: (panelId: string) => void; } & PropsWithChildren>; /** * @see {@link https://designsystem.amsterdam/?path=/docs/components-containers-tabs--docs Tabs docs at Amsterdam Design System} */ export declare const Tabs: import("react").ForwardRefExoticComponent<{ /** The identifier of the initially active Tab. Corresponds to its Panel `id` value. */ activeTab?: string; onTabChange?: (panelId: string) => void; } & HTMLAttributes & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes> & { Button: import("react").ForwardRefExoticComponent<{ 'aria-controls': string; } & import("react").ButtonHTMLAttributes & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>; List: import("react").ForwardRefExoticComponent & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>; Panel: import("react").ForwardRefExoticComponent<{ id: string; } & HTMLAttributes & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>; };