import { SceneJsonImporter } from './Scene';
export declare class ImportReport {
    private _warnings;
    private _readonly;
    private _loadedWithoutAssemblers;
    constructor(_sceneImporter: SceneJsonImporter);
    warnings(): string[];
    readonly(): boolean;
    loadedWithoutAssemblers(): boolean;
    reset(): void;
    markAsLoadedWithoutAssemblers(): void;
    addWarning(message: string): void;
}
