import type { ParjsCombinator } from "../parjser"; /** The type of an arbitrarily nested array or a non-array element. */ export type NestedArray = T | NestedArray[]; /** * Applies the source parser and projects its result into a flat array - an array with non-array * elements. */ export declare function flatten(): ParjsCombinator, T[]>; //# sourceMappingURL=flatten.d.ts.map