declare type XrpMemo = { type?: string; format?: string; data?: string; }; export declare enum LinkRelations { 'client' = "client" } export declare enum MimeTypes { 'png' = "image/png", 'html' = "text/html", 'gz' = "application/gzip" } /** * If the input is a file path then get the file otherwise treat as HTML * @param input either a file path to a PNG file or a some text to treat as HTML */ export declare function parseMemo(input?: string): Array; export {};