export declare enum EList { DENY = "deny", ALLOW = "allow" } export declare function keyToEList(key: string): EList; export declare function filenameFromEList(list: EList): string; export declare const ELISTS: EList[];