import { EventEmitter } from '../../stencil-public-runtime';
import { Prize } from './interfaces';
export declare class SallaLoyaltyReward {
    size: 'xs' | 'md';
    prize: Prize;
    group: string;
    rewardModalOpen: EventEmitter<Prize>;
    confirmModalOpen: EventEmitter<Prize>;
    isActionClickable: (prize: Prize) => boolean;
    handleActionArea: () => void;
    handleAction: () => void;
    render(): any;
}
