/** * Encode a string as a TOML double-quoted basic string. Escapes backslash, * double-quote, AND all control characters (U+0000–U+001F, U+007F) per the TOML * spec — a POSIX path containing a newline / CR / tab would otherwise be emitted * literally and produce INVALID TOML. Named escapes for the common controls, * \uXXXX for the rest. Exported for the escaping regression test. */ export declare function tomlBasicString(s: string): string; export declare function run(argv: string[]): Promise; //# sourceMappingURL=generate-hooks.d.ts.map