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