import { default as React, FC } from 'react'; import { TooltipProps } from '@salutejs/sdds-finai'; export type TooltipListProps = Omit & { groupLabel?: string; items: string[]; children: React.ReactNode; fullWidth?: boolean; }; export declare const TooltipList: FC;