/**
 * @export
 * @class Location
 */
export declare class Location {
    /**
     * @type {string}
     * @memberof Location
     */
    name?: string;
    /**
     * @type {string}
     * @memberof Location
     */
    description?: string;
    constructor(obj?: Partial<Location>);
}
export default Location;
