import type { JSX } from '../../stencil-public-runtime'; import type { DialogProps, KoliBriDialogEventCallbacks, LabelPropType } from '../../schema'; import type { ModalVariantPropType } from '../../schema/props/variant/modal'; export declare class KolModal implements DialogProps { private dialogRef?; private readonly catchRef; openModal(): Promise; closeModal(): Promise; render(): JSX.Element; _label: LabelPropType; _on?: KoliBriDialogEventCallbacks; _width?: string; _variant?: ModalVariantPropType; }