/**
 * Escape a string for use in Python
 *
 * @param input The string to escape
 * @returns the string escapes for use in python
 */
export declare function escapePython(input: string): string;
export default escapePython;
