import { PersonAction } from './person-action';
import { SimpleDate } from '../simple-date';
import { PropertyPurchase } from "../property-purchase";
import { PersonSituation } from '../person-situation';
export declare class BuyPropertyAction implements PersonAction {
    date: SimpleDate;
    purchase: PropertyPurchase;
    constructor(date: SimpleDate, purchase: PropertyPurchase);
    execute(situation: PersonSituation): void;
}
