export declare class App { static readonly APPLICATION_NAME: string; static readonly APPLICATION_SECRET: string; static readonly DEFAULT_LOCALE = "en.UTF-8"; static readonly DEFAULT_EXPLORER_PATH = "/explorer"; static readonly DEFAULT_QUERY_LIMIT = 50; } export declare class ApplicationRoles { static readonly API = "api"; } export declare class Sorts { static readonly DESC = "desc"; static readonly ASC = "asc"; } export declare class ApplicationRunModes { static readonly MODE_START_UP = "startup"; static readonly MODE_MIGRATE = "migrate"; static readonly MODE_SEED = "seed"; } export declare class EntityRelations { static readonly BELONGS_TO = "belongsTo"; static readonly HAS_ONE = "hasOne"; static readonly HAS_MANY = "hasMany"; static readonly HAS_MANY_THROUGH = "hasManyThrough"; static readonly HAS_MANY_POLYMORPHIC = "hasManyPolymorphic"; static readonly SCHEME_SET: Set; static isValid(type: string): boolean; } export declare class MimeTypes { static readonly UNKNOWN = "unknown"; static readonly IMAGE = "image"; static readonly VIDEO = "video"; static readonly TEXT = "text"; } //# sourceMappingURL=constants.d.ts.map