import { type ReactElement, type KeyboardEvent as ReactKeyboardEvent } from 'react'; import { TabProps } from './Tab.js'; interface RenderTabProps { tabItem: ReactElement; /** @defaultValue false */ isDisabled?: boolean; isSelected?: boolean; ariaControls?: string; onActivate?: () => void; onKeyDown?: (event: ReactKeyboardEvent) => void; } /** * actually rendered tab component */ export declare const RenderTab: (props: RenderTabProps) => import("react/jsx-runtime.js").JSX.Element; export {};