export declare type OrientationType = 'above' | 'below' | 'left' | 'right' | 'before' | 'after'; export declare class TooltipComponent { /** * Text to be displayed in the tooltip. */ tooltipText: string; _orientation: string; /** * Tooltip position. * * @default right */ orientation: OrientationType; /** * Controls whether information icon is displayed or not. * * @default true */ showIcon: boolean; cssClass: string; }