import type * as HKT from "@principia/prelude/HKT"; export type NonEmptyArray = ReadonlyArray & { readonly 0: A; }; export const URI = "NonEmptyArray"; export type URI = typeof URI; export type V = HKT.Auto; declare module "@principia/prelude/HKT" { interface URItoKind { readonly [URI]: NonEmptyArray; } interface URItoIndex { readonly [URI]: number; } }