import React, { HTMLProps } from "react"; import * as FatZebra from "../shared/types"; type FrameProps = { handlers: FatZebra.Handlers; config: FatZebra.PaymentConfig; iframeProps?: HTMLProps; cardToken: string; }; declare const VerifyExistingCard: ({ handlers, cardToken, config, iframeProps }: FrameProps) => React.JSX.Element; export default VerifyExistingCard;