import { default as React } from 'react'; import * as TabsPrimitive from '@radix-ui/react-tabs'; export type ListProps = Omit, 'loop'> & { /** When true, keyboard navigation will loop from last tab to first, and vice versa. * @default true */ loop?: TabsPrimitive.TabsListProps['loop']; }; /** Contains the triggers that are aligned along the edge of the active content.*/ export declare const List: React.ForwardRefExoticComponent, "ref">, "loop"> & { /** When true, keyboard navigation will loop from last tab to first, and vice versa. * @default true */ loop?: TabsPrimitive.TabsListProps["loop"]; } & React.RefAttributes>;