import { ChangeDetectorRef, EventEmitter, OnChanges, OnInit, SimpleChanges } from "@angular/core"; import { FormBuilder, FormGroup } from "@angular/forms"; import { LoggerService } from "@nova-ui/bits"; import { IHasChangeDetector, IHasForm } from "../../../../../types"; import * as i0 from "@angular/core"; export declare class TitleAndDescriptionConfigurationComponent implements IHasChangeDetector, IHasForm, OnInit, OnChanges { changeDetector: ChangeDetectorRef; private formBuilder; private logger; static lateLoadKey: string; title: string; url: string; subtitle: string; description: string; collapsible: boolean; formReady: EventEmitter>; form: FormGroup; constructor(changeDetector: ChangeDetectorRef, formBuilder: FormBuilder, logger: LoggerService); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; getSecondaryText(): string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }