import { AbstractPropertyAction } from './AbstractPropertyAction';
export declare class CanBuyPropertyAction extends AbstractPropertyAction {
    private propertyName;
    private price;
    constructor(playerName: string, message: string, propertyIndex: number, propertyName: string, price: number);
    getPropertyName(): string;
    getPrice(): number;
}
