export interface InitializationOperator<T> {
    initialize(config?: any): T | T[];
}
