import type { Table } from "./entity"; /** * Parses an encounter table in the format of * 01 First Encounter * 02-03 Second Encounter * @param tableText The rows of the table * @param [tableName] The name of the table * @returns a JSON object usable in Foundry */ export declare function parseRollTable(tableText: string, tableName?: string): Table;