import { motdJsonType } from "../types";
/**
 * Convert motd text to JSON.
 *
 * @param text
 */
export default function parseTextToJSON(text: string): {
    text: string | number;
    extra: motdJsonType[];
};
