import type { WithNormalizedProps } from "../../global"; interface DonutTooltipInput { name: string; tooltip?: string; value: string; } export interface Input extends WithNormalizedProps { } declare class DonutTooltip extends Marko.Component { } export default DonutTooltip;