export declare const GJC_TMUX_LAUNCHED_ENV = "GJC_TMUX_LAUNCHED"; export interface WindowsPowerShellInnerCommandOptions { command: readonly string[]; args?: readonly string[]; environment?: Record; bootstrapSecret?: { path: string; urlEnv: string; keyIdEnv: string; keyId: string; }; tmuxExitMarkerPath?: string; } /** Builds the shared BOM-free UTF-16LE command for native Windows tmux-compatible panes. */ export declare function buildWindowsPowerShellInnerCommand({ command, args, environment, bootstrapSecret, tmuxExitMarkerPath, }: WindowsPowerShellInnerCommandOptions): string;