import type ToStrFn from "./ToStr"; import type { TypeClass$$Show } from "../typeclass"; declare module "../typeclass/Show" { interface ShowImpl { null: ImplShowFor; } } export interface Null$$Show extends TypeClass$$Show { Show: ToStrFn; }