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