export interface IInitializableComponent {
    initialize(): Promise<void>;
}
