import * as React from 'react'; export interface UseTabsListParameters { 'aria-label'?: string; 'aria-labelledby'?: string; /** * The content of the component. */ children?: React.ReactNode; ref: React.Ref; } export declare type UseTabsListRootSlotProps = TOther & { 'aria-label'?: React.AriaAttributes['aria-label']; 'aria-labelledby'?: React.AriaAttributes['aria-labelledby']; 'aria-orientation'?: React.AriaAttributes['aria-orientation']; role: React.AriaRole; ref: React.Ref; onKeyDown?: React.KeyboardEventHandler; };