import type { ToolExecutionContext } from '../tools/types';

declare global {
  namespace Express {
    interface Request {
      authContext?: ToolExecutionContext;
    }
  }
}

export {};
