import { default as React } from 'react'; import { ThirdPartyLoopResponse } from '../../lib/types/types'; interface ThirdPartyLoopPendingProps { logo: React.ReactNode; cancelThirdPartyLoop: () => void; verificationLastResponse: ThirdPartyLoopResponse; isMockingPreviousStepThirdPartyLoop: boolean; } export declare const ThirdPartyLoopPendingComponent: ({ logo, verificationLastResponse, cancelThirdPartyLoop, isMockingPreviousStepThirdPartyLoop, }: ThirdPartyLoopPendingProps) => import("react/jsx-runtime").JSX.Element; export {};