import { RegistryParam } from '../registry';
import { TaskManagerOptions } from '../task-man';
export interface LoaderConfigOptions extends TaskManagerOptions {
    debug?: boolean;
    registry?: RegistryParam[];
    ready?: () => void;
    globals?: {
        ibsheet?: string;
        ibchart?: string;
        ibmap?: string;
    };
    autoload?: boolean;
    preset?: object;
}
