import { FunctionalComponent } from "../stencil-public-runtime"; declare type Reward = any; interface RewardComponentViewProps { states: { styles: { copyButtonText: string; redeemButtonText: string; redeemInProgressButtonText: string; redemptionErrorText: string; fuelTankRedeemedText: string; giftCardRedeemedText: string; }; isRedeeming?: boolean; redemptionErrors?: any; }; data: { reward: Reward; }; callbacks: { exchangeReward: () => Promise; }; } declare const RewardComponentView: FunctionalComponent; export default RewardComponentView;