/** * Tries to extract the message from an Error-like object. * @returns the extracted message if it is found. */ declare function getFailureReason(error?: unknown): string | undefined; export { getFailureReason };