/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { PropType } from 'vue';
/**
 * The props of the `ChartNoDataOverlay` component.
 */
interface ChartNoDataOverlayProps {
    /**
     * Sets additional CSS classes to the component.
     */
    className: string;
}
/**
 * The the Kendo UI for Vue `ChartNoDataOverlay` component. The component is used to display an overlay with a message when the Chart has no data, no series, or all series are empty.
 * The overlay will be automatically cleared if the series receive data.
 */
declare const ChartNoDataOverlay: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
    className: PropType<string>;
}>, {
    kendoLocalizationService: {};
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
    className: PropType<string>;
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export { ChartNoDataOverlay, type ChartNoDataOverlayProps };
