UNPKG

@gravity-ui/uikit

Version:

Gravity UI base styling and components

10 lines (9 loc) 273 B
import * as React from 'react'; export interface TabContextProps { id: string; value?: string; onUpdate?: (value: string) => void; isFocused?: boolean; isProvider?: boolean; } export declare const TabContext: React.Context<TabContextProps | undefined>;