export interface Location { name: string; order: number; priority: number; } export interface RawLocation { LocationName: string; Order: number; Priority: number; } export declare function parseLocation(rawInput: RawLocation): Location;