import { ApplicationRepresentation } from '../domain';
import { ComplexHandler } from '../daemon/ComplexHandler';
import { ProcessBootstrap } from '../application/ProcessBootstrap';
/**
 * Class DebugApplicationLoader
 * For a profile.js application to debugging
 */
export declare class DebugApplicationLoader {
    protected options: ApplicationRepresentation;
    protected master: ComplexHandler | ProcessBootstrap;
    constructor(options: ApplicationRepresentation);
    /**
     * Start debug application
     * @return {Promise<void>}
     */
    start(): Promise<void>;
}
