import { EventEmitter } from '../../stencil-public-runtime'; export declare class ModalHeader { hostElement: HTMLIxModalHeaderElement; /** * Hide the close button */ hideClose: boolean; /** * Icon of the Header */ icon?: string; /** * ARIA label for the icon */ ariaLabelIcon?: string; /** * ARIA label for the close icon button * Will be set as aria-label on the nested HTML button element * * @since 3.2.0 */ ariaLabelCloseIconButton?: string; onIconChange(icon?: string): void; /** * Icon color */ iconColor?: string; /** * Emits when close icon is clicked and closes the modal * Can be prevented, in which case only the event is triggered, and the modal remains open */ closeClick: EventEmitter; private parentDialog; componentDidLoad(): void; private onCloseClick; render(): any; }