import type { ConnectBuildOptions, ConnectCommonOptions, ConnectPreviewOptions, ConnectStudioOptions } from "@powerhousedao/builder-tools"; import { Command } from "commander"; import type { CommandActionType } from "../types.js"; type CliConnectCommonOptions = Pick; type CliConnectStudioOptions = ConnectStudioOptions["devServerOptions"] & CliConnectCommonOptions; type CliConnectBuildOptions = Omit & CliConnectCommonOptions; type CliConnectPreviewOptions = Omit & CliConnectCommonOptions; export declare const connectStudioCommand: CommandActionType<[ CliConnectStudioOptions ], void>; export declare const buildConnectCommand: CommandActionType<[ CliConnectBuildOptions ], void>; export declare const previewConnectCommand: CommandActionType<[ CliConnectPreviewOptions ], void>; export declare function connectCommand(program: Command): Command; export {}; //# sourceMappingURL=connect.d.ts.map