/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { Tooltip } from '../common/property-types';
import { PropType } from 'vue';
/**
 * Represents the props of the Kendo UI for Vue ChartTooltip component ([see example]({% slug tooltips_chart_charts %})).
 */
export interface ChartTooltipProps extends Tooltip {
    render?: object | Function | string;
}
/**
 * @hidden
 */
declare const ChartTooltip: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
    background: {
        type: PropType<string>;
        default: any;
    };
    border: {
        type: PropType<import('../option-types/tooltip-border.interface').TooltipBorder>;
        default: () => any;
    };
    padding: {
        type: PropType<number | import('../field-types/padding.interface').Padding>;
        default: () => any;
    };
    color: {
        type: PropType<string>;
        default: any;
    };
    render: {
        type: PropType<string | object | Function>;
        default: any;
    };
    font: {
        type: PropType<string>;
        default: any;
    };
    format: {
        type: PropType<string>;
        default: any;
    };
    opacity: {
        type: PropType<number>;
        default: any;
    };
    shared: {
        type: PropType<boolean>;
        default: any;
    };
    visible: {
        type: PropType<boolean>;
        default: boolean;
    };
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
    background: {
        type: PropType<string>;
        default: any;
    };
    border: {
        type: PropType<import('../option-types/tooltip-border.interface').TooltipBorder>;
        default: () => any;
    };
    padding: {
        type: PropType<number | import('../field-types/padding.interface').Padding>;
        default: () => any;
    };
    color: {
        type: PropType<string>;
        default: any;
    };
    render: {
        type: PropType<string | object | Function>;
        default: any;
    };
    font: {
        type: PropType<string>;
        default: any;
    };
    format: {
        type: PropType<string>;
        default: any;
    };
    opacity: {
        type: PropType<number>;
        default: any;
    };
    shared: {
        type: PropType<boolean>;
        default: any;
    };
    visible: {
        type: PropType<boolean>;
        default: boolean;
    };
}>> & Readonly<{}>, {
    color: string;
    border: import('../option-types/tooltip-border.interface').TooltipBorder;
    background: string;
    visible: boolean;
    render: string | object | Function;
    font: string;
    padding: any;
    format: string;
    shared: boolean;
    opacity: number;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export { ChartTooltip };
