/** * This error is thrown by prescript when a `pending()` step is executed. * @public */ export declare class PendingError extends Error { __prescriptPending: boolean; constructor(); } /** * Checks if the provided Error object is a PendingError, which is * thrown by the `pending()` step. * * @param e - The error to check. * @public */ export declare function isPendingError(e: any): boolean; //# sourceMappingURL=PendingError.d.ts.map