import { IPersonOptions } from "./IPersonOptions.js";
/**
 * 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 {@link Person `Person`} class.
     *
     * @param options
     * The options of the person.
     */
    constructor(options: IPersonOptions);
    /**
     * Gets or sets the name of the person.
     */
    get Name(): string;
    /**
     * @inheritdoc
     */
    set Name(value: string);
    /**
     * Gets or sets the url to the homepage of the person.
     */
    get URL(): string;
    /**
     * @inheritdoc
     */
    set URL(value: string);
}
