import { FunctionalComponent } from "../stencil-public-runtime"; export declare const CopyButton: string; interface RewardHistoryComponentViewProps { states: { showCode: boolean; styles: { copyButtonText: string; }; }; data: { reward: { name: string; code: string; valueText: string; date: string; clipboardId: string; }; }; callbacks: { toggleShowCode: () => void; }; } declare const RewardHistoryComponentView: FunctionalComponent; export default RewardHistoryComponentView;