/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes, PropsWithChildren } from 'react'; export type TabsPanelProps = { /** The identifier of the Tab Panel. */ id: string; } & PropsWithChildren>; export declare const TabsPanel: import("react").ForwardRefExoticComponent<{ /** The identifier of the Tab Panel. */ id: string; } & HTMLAttributes & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>;