import { OnChanges, OnInit, SimpleChanges } from '@angular/core'; import { Asset } from '../../shared/domain/item'; import { NotesConfig, NotesInfo } from '@rbaip/item-common-notes'; export declare class ItemCommonNotesComponent implements OnInit, OnChanges { asset: Asset; editable: boolean; editAssetFromPricing: boolean; notesData: { notesInfo: NotesInfo; notesConfig: NotesConfig; }; constructor(); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; }