/** * foreign strings and dates */ export type Foreign = { s: string[]; d: Date[]; }; /** * Given a simple subset of a TOML file, returns its JS equivalent. * @param {string} toml the TOML text to parse * @returns {object} the TOML equivalent as JSON serializable */ export function parse(toml: string): object;