import { PathMatcher } from "../PathMatcher"; import { Parser, ParserPath, ParserResult } from "./index"; export declare class IntParser implements Parser { private readonly radix?; constructor(radix?: number | undefined); parse(pathSegment: string): ParserResult; unparse(value: number): string; } export declare class IntPath extends ParserPath { constructor(base: PathMatcher, radix?: number); } //# sourceMappingURL=IntParser.d.ts.map