/**
 * When `INPUT_RDME` is parsed with `string-argv`, tokens like `--flag="value"` remain a single
 * argv element whose suffix includes literal quote characters. A real shell strips those quotes
 * before invoking Node, so we normalize to match shell and `process.argv` behavior.
 *
 */
export declare function normalizeStringArgvForGha(argv: string[]): string[];
