import { ApplicationRepresentation } from '../domain';
/**
 * Class ProcessBootstrap
 */
export declare class ProcessBootstrap {
    static processName: string;
    entry: string;
    applicationRepresentation: ApplicationRepresentation;
    constructor(entry: string, options: ApplicationRepresentation);
    /**
     * start process
     * @returns {Promise<void>}
     */
    start(): Promise<void>;
    injectMonitor(): void;
    static cmd(): void;
}
export declare function cmd(): void;
