export declare enum EUomLibrarySite { JOULE = "joule", MAIN = "main", PRECINCT = "precinct", AGLC = "aglc", EDDIE = "eddie", STOPFORD = "stopford", KANTOROWICH = "kantorowich", CHRISTIES = "christies", ODDFELLOWS = "oddfellows", RYLANDS = "rylands" } export declare function toEUomLibrarySite(type: string): EUomLibrarySite | undefined; export declare function fromEUomLibrarySite(type: EUomLibrarySite): string; export declare function isEUomLibrarySite(test: unknown): test is EUomLibrarySite; export declare function keyToEUomLibrarySite(key: string): EUomLibrarySite; export declare const EUOM_LIBRARY_SITES: EUomLibrarySite[]; export declare function prettyFromEUomLibrarySite(site: EUomLibrarySite): string;