import { z } from "zod"; import { TradeExecutor } from "../services/trade-executor.js"; export declare const goLiveSchema: z.ZodObject<{ confirm: z.ZodBoolean; }, z.core.$strip>; export type GoLiveInput = z.infer; export declare function handleGoLive(executor: TradeExecutor, input: GoLiveInput): Promise; //# sourceMappingURL=go-live.d.ts.map