export interface NotFoundPageProps { /** Status / error code shown large. Defaults to 404. */ code?: string | number; /** Heading. Defaults to "Page not found". */ title?: string; /** Supporting copy under the heading. */ description?: string; /** Where the primary "home" action goes (anchor href). Ignored if onGoHome is set. */ homeHref?: string; /** Label for the primary action. Defaults to "Back to home". */ homeLabel?: string; /** Click handler for the primary action (overrides homeHref, e.g. SPA navigate). */ onGoHome?: () => void; /** Click handler for the secondary "Go back" action. Defaults to history.back(). */ onGoBack?: () => void; } /** * Reusable, theme-aware "not found" page. Drop it into any router catch-all so * unknown routes render a friendly graphic + error code instead of an empty * content area. Token-only — renders correctly in every Boff UI theme. */ export declare function NotFoundPage({ code, title, description, homeHref, homeLabel, onGoHome, onGoBack, }: NotFoundPageProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=NotFoundPage.d.ts.map