import type { Primitive } from './types.js';
declare const inferBoolean: (value: Primitive) => Primitive;
declare const inferNull: (value: Primitive) => Primitive;
declare const inferNumber: (value: Primitive) => Primitive;
declare const inferString: (value: Primitive) => Primitive;
declare const isString: (value: unknown) => value is string;
declare const stripComments: (value: Primitive) => Primitive;
export { inferBoolean, inferNull, inferNumber, inferString, isString, stripComments };
