import { Person as PersonData } from '../../../types';
import Link from './Link';
export default class Person {
    private name;
    private email;
    private link;
    /**
     * @see http://www.topografix.com/gpx/1/1/#type_personType
     */
    constructor({ name, email, link }: {
        email?: string;
        link?: Link;
        name?: string;
    });
    toObject(): PersonData;
}
