import { FunctionalComponent } from "preact"; export interface ErrorProps { statusCode?: number; title?: string; } declare const Error: FunctionalComponent; export default Error;