import { PassThroughOption, PassThrough } from 'primeng/api'; /** * Custom pass-through(pt) options. * @template I Type of instance. * * @see {@link Tooltip.pt} * @group Interface */ interface TooltipPassThroughOptions { /** * Used to pass attributes to the root's DOM element. */ root?: PassThroughOption; /** * Used to pass attributes to the arrow's DOM element. */ arrow?: PassThroughOption; /** * Used to pass attributes to the text's DOM element. */ text?: PassThroughOption; } /** * Defines valid pass-through options in Tooltip. * @see {@link TooltipPassThroughOptions} * * @template I Type of instance. */ type TooltipPassThrough = PassThrough>; export type { TooltipPassThrough, TooltipPassThroughOptions };