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