import type { TCodeEnvironmentPairingResponse } from '../types'; export type CodeWorkerShell = 'posix' | 'powershell'; export type CodeWorkerPairing = TCodeEnvironmentPairingResponse['pairing']; export interface CodeWorkerRunOptions { defaultWorkspace?: boolean; allowWorkspaceWrites?: boolean; allowWorkspaceCommands?: boolean; } export declare function isCodeWorkerShell(value: string): value is CodeWorkerShell; export declare function createCodeWorkerSetupCommand(pairing: CodeWorkerPairing, shell: CodeWorkerShell, options?: CodeWorkerRunOptions): string;