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