/**
* Class to handle Apple pass localizations
*
* @see {@link @see https://apple.co/2M9LWVu} - String Resources
* @see {@link https://developer.apple.com/library/archive/documentation/UserExperience/Conceptual/PassKit_PG/Creating.html#//apple_ref/doc/uid/TP40012195-CH4-SW54}
*/
///
/**
* Just as in C, some characters must be prefixed with a backslash before you can include them in the string.
* These characters include double quotation marks, the backslash character itself,
* and special control characters such as linefeed (\n) and carriage returns (\r).
*
* @see {@link https://developer.apple.com/library/archive/documentation/Cocoa/Conceptual/LoadingResources/Strings/Strings.html#//apple_ref/doc/uid/10000051i-CH6-SW13}
*/
export declare function escapeString(str: string): string;
export declare function unescapeString(str: string): string;
/**
* @see {@link https://github.com/justinklemm/i18n-strings-files/blob/dae303ed60d9d43dbe1a39bb66847be8a0d62c11/index.coffee#L100}
* @param {string} filename - path to pass.strings file
*/
export declare function readLprojStrings(filename: string): Promise