/**
 * @license EUPL-1.2+
 * Copyright Gemeente Amsterdam
 */
import type { ButtonHTMLAttributes, PropsWithChildren } from 'react';
export type TabsButtonProps = {
    /** An identifier. */
    tab: string;
} & PropsWithChildren<ButtonHTMLAttributes<HTMLButtonElement>>;
export declare const TabsButton: import("react").ForwardRefExoticComponent<{
    /** An identifier. */
    tab: string;
} & ButtonHTMLAttributes<HTMLButtonElement> & {
    children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLButtonElement>>;
