import React from 'react'; import './errorStyle.css'; /** * Reusable "Not Found" (404) component for applications using ptr-fe-core. * * Renders a simple message that the requested resource could not be found and * optionally displays a navigation link (by default a "Return Home" anchor). * The layout and visual styling are handled via `errorStyle.css`. * * @param link - Optional React node rendered as the navigation element under * the message. When omitted, a default "Return Home" link to `/` is used. */ export declare const PtrNotFound: ({ link, }: { link?: React.ReactNode; }) => import("react/jsx-runtime").JSX.Element;