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