export interface LocationDTO {
    country?: string;
}
export declare function parseLocationDTO(data: any): LocationDTO;
