import React from 'react'; declare global { interface Window { snackbar?: any; } } export type verificationProps = { onError: (a: string, b: any) => void; onSuccess: (currentVerificationCompleted: string, response: any, verificationsCompleted: any) => void; onBack: () => void; token: string; disclaimer: string; }; export type verificationsListData = { vName: string; logo: string; logoBg: string; link: string; key: string; component: (props: verificationProps) => JSX.Element; }; export declare const callSnackbar: (variant: any, msg: string) => void; export default function Wrapper({ onError, onSuccess, verifications, token, disclaimer, }: { onError?: (() => void) | undefined; onSuccess?: ((...args: any) => void) | undefined; verifications?: string[] | undefined; token?: string | undefined; disclaimer?: string | undefined; }): React.JSX.Element;