import type { Trait } from "./entity"; /** * Determine whether a line is the beginning of a new trait * @param line The line of the statblock */ export declare function isTraitStart(line: string): boolean; /** * Parse the traits section of a statblock * @param lines the statblock lines containing traits */ export declare function parseTraits(lines: string[]): Trait[];