/** * Sanitises title, removing any unwanted characters that might break XML. * * This is a very basic funciton, not full parser. */ declare function sanitiseTitleAttribute(content: string): string; export { sanitiseTitleAttribute };