import React from "react"; import type * as T from "./Tabs.types"; export declare const TabsProvider: React.Provider; export declare const useTabs: (value?: string) => { direction?: "column" | "row"; itemWidth?: "equal"; variant?: "bordered" | "borderless" | "pills" | "pills-raised"; name?: string; disableSelectionAnimation?: boolean; onChange?: (args: { value: string; name?: string; }) => void; size: NonNullable; value?: string; registerPanel: (value: string) => void; unregisterPanel: (value: string) => void; elActiveRef: React.RefObject; elPrevActiveRef: React.RefObject; elScrollableRef: React.RefObject; selection: T.SelectionState; setSelection: React.Dispatch>; panelId: string | undefined; buttonId: string | undefined; };