/**
 * @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 which will be received by the custom header title of the [Calendar]({% slug api_dateinputs_calendarprops %}#toc-headertitle).
 */
export interface CalendarHeaderTitleProps {
    value?: string;
    id?: string;
    view?: number;
}
/**
 * @hidden
 */
declare const CalendarHeaderTitle: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
    id: PropType<string>;
    value: PropType<string>;
    view: PropType<number>;
}>, {}, {}, {}, {
    handleClick(event: any): void;
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
    click: (event: MouseEvent) => true;
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
    id: PropType<string>;
    value: PropType<string>;
    view: PropType<number>;
}>> & Readonly<{
    onClick?: (event: MouseEvent) => any;
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export { CalendarHeaderTitle };
