//#region src/shims/unrecognized-action-error.d.ts
/**
 * Unrecognized server-action errors.
 *
 * When a server action call fails because the server did not recognize the
 * action id, the client bundle and the server are typically from different
 * deployments and a hard reload is required.
 *
 * This module is intentionally dependency-free: both the `next/navigation`
 * shim (which re-exports these for user code) and vinext's client
 * server-action dispatcher import `UnrecognizedActionError` from here, so the
 * `instanceof` check inside `unstable_isUnrecognizedActionError` resolves
 * against a single shared class.
 *
 * Ported 1:1 from Next.js:
 *   https://github.com/vercel/next.js/blob/canary/packages/next/src/client/components/unrecognized-action-error.ts
 */
/**
 * Error class for unrecognized server-action calls. Thrown by vinext's client
 * server-action dispatcher when the server reports the requested action id as
 * unknown (the `x-nextjs-action-not-found` response header).
 */
declare class UnrecognizedActionError extends Error {
  constructor(...args: ConstructorParameters<typeof Error>);
}
/**
 * Returns true if the error came from a server action whose id was not
 * recognized by the server. Useful inside `catch` blocks that surround
 * `await myAction(...)` calls; reloading the page generally fixes the
 * underlying client/server deployment mismatch.
 */
declare function unstable_isUnrecognizedActionError(error: unknown): error is UnrecognizedActionError;
//#endregion
export { UnrecognizedActionError, unstable_isUnrecognizedActionError };