import { OnChanges, SimpleChanges } from '@angular/core'; import { IcosForm } from './form'; import { DomSanitizer, SafeStyle } from '@angular/platform-browser'; export declare class IcosFormItem implements OnChanges { root: IcosForm; private sanitizer; status: string; error: string; label: string; size: string; required: boolean; labelWidth: string; showMessage: boolean; inlineMessage: boolean; statusSubscriber: Array<(status: string) => void>; constructor(root: IcosForm, sanitizer: DomSanitizer); showMessageEl(): boolean; isInlineMessage(): boolean; makeSize(): string; makeLabelStyle(): SafeStyle; makeContentStyle(): SafeStyle; ngOnChanges(changes: SimpleChanges): void; }