import { Mood } from './types';
export declare class Person {
    private name;
    private currentMood;
    constructor(name: string);
    getName(): string;
    setMood(mood: Mood): void;
    getMood(): Mood;
}
