import { OnInit } from '@angular/core'; export declare type IconNames = 'calendar' | 'calendarEdit' | 'close' | 'logOut' | 'timeSpan' | 'users' | 'arrow' | 'arrowTop' | 'arrowBottom' | 'arrowLeft' | 'arrowRight'; export declare const Icons: { [k in IconNames]: { path: string; white: string | null; }; }; export declare class IconComponent implements OnInit { icon: IconNames; white: boolean; size: number; constructor(); ngOnInit(): void; readonly iconPath: string | null; }