/** * @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>; export declare const TabsButton: import("react").ForwardRefExoticComponent<{ /** The identifier of the corresponding tab panel. */ 'aria-controls': string; } & ButtonHTMLAttributes & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>;