import * as react from 'react';

type ErrorLike = Error | undefined | null | boolean;
/** @see https://foxact.skk.moe/use-error-boundary */
declare function useErrorBoundary(givenError?: ErrorLike): react.Dispatch<react.SetStateAction<ErrorLike>>;

export { useErrorBoundary };
