import { IsAny } from "../is-any"; export type IsUnknown = IsAny extends true ? false : unknown extends Type ? true : false;