import React from 'react'; import { LocaleFunction } from '@lingxiteam/types'; interface NotFoundProps { getLocale?: LocaleFunction; description?: string; } declare const NotFound: React.FC; export default NotFound;