import { Either } from 'fp-ts/Either'; declare type ParserResult = [T, string]; declare type ParserError = [string, string]; declare type Parser = (input: string) => Either>; export declare const p_digit: Parser; export declare const many0: (p: Parser) => Parser; export {};