import type { Parser } from '../../libs/standard-parser'; /** * Given any number of parsers as params, iterates through them * sequentially until either all parsers have run successfully or * any parser fails. The `cursorEnd` value of the previous parser * is used as the `cursor` value for the subsequent parser. * * @param parsers - Any parser functions * @return A CombinatorResult */ export declare const many: (parsers_0: Parser, ...parsers_1: Parser[]) => Parser;