/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { ButtonHTMLAttributes, PropsWithChildren } from 'react'; export type TabsButtonProps = { /** The identifier of the corresponding tab panel. */ readonly 'aria-controls': string; } & Readonly>>; /** * A tab button that reveals its associated panel when activated. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-containers-tabs--docs Tabs docs at Amsterdam Design System} */ export declare const TabsButton: import("react").ForwardRefExoticComponent<{ /** The identifier of the corresponding tab panel. */ readonly 'aria-controls': string; } & Readonly>> & import("react").RefAttributes>;