import { EventEmitter } from '../../stencil-public-runtime';
import { Prize } from './interfaces';
export declare class SallaRewardCard {
    /**
     * The prize item
     */
    prize: Prize;
    /**
     * Callback to be called when the area is clicked
     */
    areaClick: EventEmitter<MouseEvent>;
    /**
     * Callback to be called when the action is clicked
     */
    actionClick: EventEmitter<MouseEvent>;
    render(): any;
}
