import * as React from 'react'; export interface TabsListContext { /** * The measured size of the list, used by the indicator to derive the active * tab's distance from the right and bottom edges. */ listSize: { width: number; height: number; } | undefined; } export declare const TabsListContext: React.Context; export declare function useTabsListContext(): TabsListContext; //# sourceMappingURL=TabsListContext.d.ts.map