/**
 * @mergeTarget
 * @module Src/Core
 */
/**
 * Enumerator of all possible core error codes
 * @source
 */
declare enum CoreErrorCodes {
    /**
     * If this error code was sent, you probably initialize a singleton twice.
     */
    SINGLETON_NOT_UNIQUE = "LisioCore_0",
    /**
     * If this error code was sent, your asset was not foud. Maybe you misspell it or not add to project in your asset folder.
     */
    ASSET_NOT_FOUND = "LisioCore_1"
}
export { CoreErrorCodes };
