/** * @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. */ readonly activeTab?: string; /** A function to run when another Tab is activated. Provides the id of its Panel. */ readonly onTabChange?: (panelId: string) => void; } & Readonly>>; /** * Discloses related pieces of content in a secondary area on the page. * * @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. */ readonly activeTab?: string; /** A function to run when another Tab is activated. Provides the id of its Panel. */ readonly onTabChange?: (panelId: string) => void; } & Readonly>> & import("react").RefAttributes> & { Button: import("react").ForwardRefExoticComponent<{ readonly 'aria-controls': string; } & Readonly>> & import("react").RefAttributes>; List: import("react").ForwardRefExoticComponent>> & import("react").RefAttributes>; Panel: import("react").ForwardRefExoticComponent<{ readonly id: string; } & Readonly>> & import("react").RefAttributes>; };