export interface InferTypeOptions { /** * When `true`, the literal string `"null"` is decoded to the `null` value. * Defaults to `false` (kept as the literal string `"null"`) — most CSV/URL * sources mean the literal string when they emit `null`. */ nullLiteral?: boolean; } export declare function inferType(value: string, options?: InferTypeOptions): string | number | boolean | null; //# sourceMappingURL=inferType.d.ts.map