import { default as React, ReactNode } from 'react'; type Context = { onKeyDown: (event: React.KeyboardEvent) => void; index: number; register: (index: number, ref: TabRef) => void; }; export declare const TabListContext: React.Context; export declare const useTabListContext: () => Context; export type TabRef = React.RefObject; export type TabListProps = { /** * The Tab items to display */ children: ReactNode[]; /** * Whether the TabList should fit the container * @default false */ isFitted?: boolean; /** * className for the element */ className?: string; }; export declare const TabList: ({ children, isFitted, className }: TabListProps) => React.JSX.Element; export {}; //# sourceMappingURL=TabList.d.ts.map