import { type PopupProps, type SelectOption, type SelectOptionGroup } from '@gravity-ui/uikit'; /** @deprecated */ type TooltipButtonProps = Pick & { domRef: HTMLElement | null; buttonTitle?: string; items?: SelectOption[] | SelectOptionGroup[]; onUpdate: (s: string) => void; withSearch?: boolean; }; /** @deprecated */ export declare const TooltipButton: React.FC; export {};