import { IPersonOptions } from "./IPersonOptions";
/**
 * Represents a person.
 */
export declare class Person {
    /**
     * The name of the person.
     */
    private name;
    /**
     * The url to the homepage of the person.
     */
    private url;
    /**
     * Initializes a new instance of the `Person` class.
     */
    constructor(options: IPersonOptions);
    /**
     * Gets or sets the name of the person.
     */
    Name: string;
    /**
     * Gets or sets the url to the homepage of the person.
     */
    URL: string;
}
