declare const HookExecutionError_base: new = {}>(args: import("effect/Types").VoidIfEmpty<{ readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }>) => import("effect/Cause").YieldableError & {
readonly _tag: "HookExecutionError";
} & Readonly;
/**
* Error thrown when a hook handler execution fails.
*/
export declare class HookExecutionError extends HookExecutionError_base<{
readonly hookType: string;
readonly handlerIndex: number;
readonly cause: unknown;
}> {
}
/**
* Union type for all hook errors, enabling exhaustive catchTag handling.
*/
export type HookError = HookExecutionError;
export {};
//# sourceMappingURL=errors.d.ts.map