export interface IBigFloat { coefficient: bigint; exponent: number; } export declare type NumericValue = string | number | IBigFloat | bigint; export declare type TokenArray = Array<{ type: string; value: string | IBigFloat; } | { type: string; value: boolean; }>;