import { Link as LinkData } from '../../../types';
export default class Link {
    private href;
    private text?;
    private type?;
    /**
     * @see http://www.topografix.com/gpx/1/1/#type_linkType
     */
    constructor(href: string, { text, type, }?: {
        text?: string;
        type?: string;
    });
    toObject(): LinkData;
}
