/** * * Modal header element used within [Components.Modal](Components.Modal.html) components. See there for examples. * * @class ModalHeader * @namespace Components * @extends Glimmer.Component * @public */ import type { ComponentLike } from '@glint/template'; import type { TitleSignature } from './header/title'; import type { CloseSignature } from './header/close'; export interface HeaderSignature { Args: { closeButton?: boolean; title?: string; titleComponent?: ComponentLike; closeComponent?: ComponentLike; onClose?: () => void; }; Blocks: { default: [ { title: ComponentLike; close: ComponentLike; } ]; }; Element: HTMLDivElement; } declare const _default: import("@ember/component/template-only").TemplateOnlyComponent; export default _default;