export type ServerErrorPageProps = { /** Re-attempts whatever failed. Resolves when the attempt has settled, either way. */ onRetry?: () => void | Promise; /** * `'notFound'` for a deployment Core says does not exist. Same page, different numeral and * wording — and no retry, because a deleted deployment never comes back on a second attempt. */ variant?: 'server' | 'notFound'; }; export declare function ServerErrorPage(props: ServerErrorPageProps): import("solid-js").JSX.Element;