import { type ComponentPropsWithoutRef, type Dispatch, type ReactNode, type Ref, type RefObject, type SetStateAction } from "react"; interface TabOverflowListProps extends ComponentPropsWithoutRef<"button"> { buttonRef?: Ref; tabstripRef: RefObject; children?: ReactNode; isMeasuring?: boolean; open: boolean; setOpen: Dispatch>; } export declare const TabOverflowList: import("react").ForwardRefExoticComponent>; export {};