import * as download from "./download";
import * as version from "./version";
import * as utils from "./utils";
import * as workspace from "./workspace";
/**
 * Represents kratos core object
 */
export declare const kratos: {
    /**
     * Represents the download module
     *
     */
    download: typeof download;
    /**
     * Represents the version module
     */
    version: typeof version;
    /**
     * Represents the utility module
     */
    utils: typeof utils;
    /**
     * Represents the workspace module
     */
    workspace: typeof workspace;
};
export { download, version, utils, workspace };
