/** * Commonly supported character encodings for CSV parsing in Node.js environments. * * @remarks * Node.js 20+ supports the WHATWG Encoding Standard through TextDecoder. * This list includes the most commonly used encodings for CSV files. * * @see {@link https://nodejs.org/api/util.html#class-utiltextdecoder | Node.js TextDecoder} * @see {@link https://encoding.spec.whatwg.org/#names-and-labels | WHATWG Encoding Standard} */ export declare const SUPPORTED_CHARSETS: ReadonlySet;