/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes, PropsWithChildren } from 'react'; export type TabsPanelProps = { /** The identifier of the Tab Panel. */ readonly id: string; } & Readonly>>; /** * The content panel shown when its associated tab button is active. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-containers-tabs--docs Tabs docs at Amsterdam Design System} */ export declare const TabsPanel: import("react").ForwardRefExoticComponent<{ /** The identifier of the Tab Panel. */ readonly id: string; } & Readonly>> & import("react").RefAttributes>;