import type { Parjser } from "../parjser"; /** * Returns a parser that will parse any of the strings in `strs` and yield the text that was parsed. * If it can't, it will fail softly without consuming input. * * @param strs A set of string options to parse. In typescript, you can also use a constant tuple if * you pass it in using the spread operator (`...`). */ export declare function anyStringOf(...strs: T[]): Parjser; //# sourceMappingURL=string-of.d.ts.map