/**
 * @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';
/**
 * Represents the props of the Kendo UI for Vue Hint component.
 */
export interface HintProps {
    /**
     * Represents the id of the Hint element.
     * The value should be also set to the editor's `ariaDescribedBy` property.
     */
    id?: string;
    /**
     * Specifies the alignment of the Hint text.
     *
     * The possible values are:
     * * (Default) `start`
     * * `end`
     */
    direction?: string;
}
/**
 * @hidden
 */
declare const Hint: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
    id: PropType<string>;
    direction: {
        type: PropType<string>;
        default: string;
        validator: (value: string) => any;
    };
}>, {}, {}, {
    hintClassName(): {
        'k-form-hint': boolean;
        'k-text-start': boolean;
        'k-text-end': boolean;
    };
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
    id: PropType<string>;
    direction: {
        type: PropType<string>;
        default: string;
        validator: (value: string) => any;
    };
}>> & Readonly<{}>, {
    direction: string;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export { Hint };
