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