/**
 * @license EUPL-1.2+
 * Copyright Gemeente Amsterdam
 */
export type TabsContextValue = {
    /** The identifier of the active Tab. */
    activeTabId?: string;
    /** A function to update the active Tab. */
    updateTab: (tab: string) => void;
};
export declare const TabsContext: import("react").Context<TabsContextValue>;
