/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
/**
* @hidden
*/
export declare const SLIDER_LABEL_ATTRIBUTE = "data-slider-label";
/**
* Represents the props of the Kendo UI for Vue SliderLabel component.
*/
export interface SliderLabelProps {
/**
* The position in relative to the start of the SliderLabel component.
*/
position: number;
/**
* The onClick event of the SliderLabel component.
*/
onClick?: (event: any) => void;
/**
* The title of the SliderLabel component.
*/
title?: string;
/**
* @hidden
*/
vertical?: boolean;
}
/**
* Represents the Kendo UI for Vue Native SliderLabel component.
* ### props [SliderLabelProps]({% slug api_inputs_sliderlabelprops %})
* The props of the SliderLabel component.
*/
declare const SliderLabel: import('vue').DefineComponent, {}, {
currentDir: string;
}, {}, {
onClick(event: any): void;
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
click: any;
}, string, import('vue').PublicProps, Readonly> & Readonly<{
onClick?: (...args: any[] | unknown[]) => any;
}>, {
vertical: boolean;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export { SliderLabel };