import * as React from "react"; export declare type ErrorChild = React.ReactNode | ((error: Error, errorInfo: React.ErrorInfo) => React.ReactNode); export default function withCatchable(WrappedComponent: React.ComponentType, errorChild?: ErrorChild): React.ComponentType;