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