import { FC } from 'react'; interface FormGiftCardProps { onSelect: (amount: any) => void; isPrint: boolean; currencyCode: string; value: number | string; availableAmounts: Array; translations: any; } declare const FormGiftCard: FC; export default FormGiftCard;