/**
 * Raw JSON object returned by `JSON.parse`.
 */
export type RawJsonRow = {
  // deno-lint-ignore no-explicit-any
  [key: string]: any;
};