import { Either } from "@levler/utils"; export declare type ParserError = { errors: string[]; }; export declare type ParamParser = { parse: (s: string[]) => Either; }; export declare class ParamParsers { string: ParamParser; int: ParamParser; float: ParamParser; } //# sourceMappingURL=param-parser.d.ts.map