export interface ReadOnlyInterface { readOnly: boolean; elementRef: { nativeElement: { readOnly: boolean; }; }; } export declare class ReadOnlyUtil { static setupProperty(readOnly: boolean, component: ReadOnlyInterface): void; }