export function parseRepoLensProtocolUrl(rawUrl: string): { command: string; boardId: string | null; source: string | null; }; export function isSafeRepoLensCommand(command: string): boolean; export function buildTerminalLaunchScript(input: { command: string; cliEntrypoint: string; nodePath: string; repoRoot?: string | null; source?: string | null; }): string;