import { ICustomModal } from '../models/ICustomModal'; import { ICustomModalComponent } from '../models/ICustomModalComponent'; import { ModalDialogInstance } from '../models/ModalDialogInstance'; import * as i0 from "@angular/core"; /** * Data definition */ export declare class OKOnlyContent { title: string; body: string; okText: string; constructor(title?: string, body?: string, okText?: string); } /** * A 2 state bootstrap modal window, representing 2 possible answer, true/false. */ export declare class OKOnlyModal implements ICustomModalComponent { dialog: ModalDialogInstance; context: OKOnlyContent; set modelContentData(parms: ICustomModal); constructor(dialog: ModalDialogInstance); ok(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }