/**
 * @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';
/**
 * @hidden
 */
export interface DialogTitleBarProps {
    /**
     * @hidden
     */
    onClosebuttonclick?: (event: any) => void;
    /**
     * @hidden
     */
    id?: string;
    /**
     * @hidden
     */
    closeIcon?: boolean;
    /**
     * Sets the title of the Dialog .
     *  If `title` of 'titleRender' is not specified, the Dialog does not render a **Close** button.
     */
    title?: string | any;
    /**
     * Defines the custom rendering of the title. Accepts a Vue component, a `render` function, or a slot name.
     */
    titleRender?: ((h: any, defaultRendering: any | null, props: any, listeners: any) => any) | string | any;
}
/**
 * @hidden
 */
declare const DialogTitleBar: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
    id: PropType<string>;
    closeIcon: {
        type: PropType<boolean>;
        default: boolean;
    };
    title: PropType<any>;
    titleRender: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
    onClosebuttonclick: PropType<(event: any) => void>;
}>, {}, {}, {}, {
    onCloseButtonClick(e: any): void;
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
    id: PropType<string>;
    closeIcon: {
        type: PropType<boolean>;
        default: boolean;
    };
    title: PropType<any>;
    titleRender: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
    onClosebuttonclick: PropType<(event: any) => void>;
}>> & Readonly<{}>, {
    closeIcon: boolean;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export { DialogTitleBar };
