/**
 * Class with constants used in the application.
 */
export declare class Constants {
    /**
     * Command to execute on Windows.
     */
    static readonly WINDOWS_COMMAND: string;
    /**
     * Command to execute on Linux.
     */
    static readonly LINUX_COMMAND: string;
    /**
     * Command to execute on OSX.
     */
    static readonly DARWIN_COMMAND: string;
}
