import type { HostOpts } from "./decorators/index.js"; import type { CreateBaseWorkflowOpts } from "@hatchet-dev/typescript-sdk"; /** * SDK-compatible host options. */ export type SdkHostOpts = Omit; /** * Translates enhanced HostOpts to SDK-compatible SdkHostOpts. */ export declare const translateHostOpts: (opts: HostOpts) => SdkHostOpts;