import type { HttpLlm } from "../HttpLlm";
import { IHttpResponse } from "../structures/IHttpResponse";
import { ILlmSchema } from "../structures/ILlmSchema";
export declare namespace HttpLlmFunctionFetcher {
    const execute: <Model extends ILlmSchema.Model>(props: HttpLlm.IFetchProps<Model>) => Promise<unknown>;
    const propagate: <Model extends ILlmSchema.Model>(props: HttpLlm.IFetchProps<Model>) => Promise<IHttpResponse>;
}
