import { EventEmitter } from '../../stencil-public-runtime';
import { Prize } from './interfaces';
export declare class SallaRewardAction {
prize: Prize;
actionClick: EventEmitter<MouseEvent>;
isShopNow: (prize: Prize) => boolean;
handleClick: (e: any) => void;
render(): any;
}