import type { Script, Scriptlet } from "../types"; export type ShebangConfig = { command: string; args: string[]; shell: boolean | string; cwd: string; filePath: string; }; export declare function parseShebang(script: Script | Scriptlet): ShebangConfig;