import type { CorbadoError } from '@corbado/web-core'; import React from 'react'; type Props = { isDevMode: boolean; error: CorbadoError; customerSupportEmail?: string; }; declare const ErrorPopup: ({ customerSupportEmail, error }: Props) => React.JSX.Element; export default ErrorPopup;