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