import { Bounds as BoundsData } from '../../../types';
export default class Bounds {
    private minlat;
    private minlon;
    private maxlat;
    private maxlon;
    /**
     * @see http://www.topografix.com/gpx/1/1/#type_boundsType
     */
    constructor(minlat: number, minlon: number, maxlat: number, maxlon: number);
    toObject(): BoundsData;
}
