import { type LargeIntMode } from './scalar.js'; /** * Decode GCF generic or graph profile text into a JS value. * * `opts.largeInt` sets the policy for an in-domain integer whose magnitude exceeds * this host's safe-integer range (2^53-1); it defaults to `'error'`. See LargeIntMode. */ export declare function decodeGeneric(input: string, opts?: { largeInt?: LargeIntMode; }): any; //# sourceMappingURL=decode_generic.d.ts.map