1 | import * as React from 'react';
|
2 | import { ListContextValue } from '../useList/ListContext';
|
3 | import { TabMetadata } from '../useTabs';
|
4 | import { CompoundComponentContextValue } from '../useCompound';
|
5 | export type TabsListProviderValue = CompoundComponentContextValue<string | number, TabMetadata> & ListContextValue<string | number>;
|
6 | export interface TabsListProviderProps {
|
7 | value: TabsListProviderValue;
|
8 | children: React.ReactNode;
|
9 | }
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 | export declare function TabsListProvider(props: TabsListProviderProps): React.JSX.Element;
|