import { type IParser, type IMapping } from './parser'; export interface IInteger extends IParser { type: 'Integer'; } export declare function Integer>(mapping: Mapping): IInteger>; export declare function Integer(): IInteger; export declare function IsInteger(value: unknown): value is IInteger; export declare function ParseInteger(input: string): [] | [string, string];