import { InjectionToken } from '@angular/core';
export declare const AR_EXPORTS: InjectionToken<Export[]>;
export declare abstract class Export {
    readonly key: string;
    abstract init(): Promise<void>;
}
