/************************************************************************************************* Welcome to Baml! To use this generated code, please run one of the following: $ npm install @boundaryml/baml $ yarn add @boundaryml/baml $ pnpm add @boundaryml/baml *************************************************************************************************/ import type { BamlRuntime, BamlCtxManager, ClientRegistry, Image } from "@boundaryml/baml"; import { HTTPRequest } from "@boundaryml/baml"; import type { TestStep } from "./types"; import type TypeBuilder from "./type_builder"; type BamlCallOptions = { tb?: TypeBuilder; clientRegistry?: ClientRegistry; }; export declare class HttpRequest { private runtime; private ctxManager; constructor(runtime: BamlRuntime, ctxManager: BamlCtxManager); ClassifyCheckFailure(screenshot: Image, check: string, previousActions: string[], __baml_options__?: BamlCallOptions): HTTPRequest; CreatePartialRecipe(screenshot: Image, step: TestStep, previousActions: string[], __baml_options__?: BamlCallOptions): HTTPRequest; EvaluateCheck(screenshot: Image, check: string, __baml_options__?: BamlCallOptions): HTTPRequest; LocateTarget(screenshot: Image, target: string, __baml_options__?: BamlCallOptions): HTTPRequest; RemoveImplicitCheckContext(screenshot: Image, check: string, previousActions: string[], __baml_options__?: BamlCallOptions): HTTPRequest; } export declare class HttpStreamRequest { private runtime; private ctxManager; constructor(runtime: BamlRuntime, ctxManager: BamlCtxManager); ClassifyCheckFailure(screenshot: Image, check: string, previousActions: string[], __baml_options__?: BamlCallOptions): HTTPRequest; CreatePartialRecipe(screenshot: Image, step: TestStep, previousActions: string[], __baml_options__?: BamlCallOptions): HTTPRequest; EvaluateCheck(screenshot: Image, check: string, __baml_options__?: BamlCallOptions): HTTPRequest; LocateTarget(screenshot: Image, target: string, __baml_options__?: BamlCallOptions): HTTPRequest; RemoveImplicitCheckContext(screenshot: Image, check: string, previousActions: string[], __baml_options__?: BamlCallOptions): HTTPRequest; } export {};