import type { FC } from 'react'; interface ErrorMessageProps { message: string; } declare const ErrorMessage: FC; export default ErrorMessage;