import { type ElementType } from 'react'; import { type TooltipProps } from '../../types'; type omittedProps = 'id' | 'onToggle'; export interface UseTooltipStyleProps extends TooltipProps { } export interface UseTooltipStylePropsReturn { classProps: { rootClassName: string; popoverClassName: string; arrowClassName: string; closeButtonClassName: string; }; props: Omit, omittedProps>; } export declare const useTooltipStyleProps: (props: Omit, omittedProps>) => UseTooltipStylePropsReturn; export {};