export declare function escapeSGFText(txt: string, escapeColon?: boolean): string;
/**
 * SGF "simple text", eg used in the LB property, we can't have newlines. This
 * strips them and replaces them with spaces.
 */
export declare function newlines_to_spaces(txt: string): string;
