/**
 * Unescape a string encoded in C style
 *
 * @param input The string to unescape
 * @returns the string with escapes resolved
 */
export declare function unescapeC(input: string): string;
export default unescapeC;
