import type { ParserSymbol } from '../models.js'; /** * Tries to match one or more instances of the given symbol. * * It will only be valid if at least one instance of the symbol has been matched. * * @param factory - The function that creates the grammar symbol that may appear more than once * * @returns The grammar symbol */ export declare function oneOrMore(factory: (index: number) => ParserSymbol): ParserSymbol; //# sourceMappingURL=one-or-more.d.ts.map