export declare enum ELogType { MANUAL = "manual", AUTOMATIC = "automatic" } export declare function toELogType(type: string): ELogType | undefined; export declare function fromELogType(type: ELogType): string; export declare function isELogType(test: unknown): test is ELogType; export declare function keyToELogType(key: string): ELogType; export declare const ELOG_TYPES: ELogType[];