import { AbstractPropertyAction } from './AbstractPropertyAction';
export declare class MustPayRentAction extends AbstractPropertyAction {
    private toPlayer;
    private amount;
    constructor(playerName: string, message: string, propertyIndex: number, toPlayer: string, amount: number);
    getToPlayer(): string;
    getAmount(): number;
}
