import type { Input } from "../Input.ts"; import { type Output } from "../Output.ts"; import type { IsAny } from "./types.ts"; export declare const isUnknown: (value: V) => value is Output>; export type IsUnknown = unknown extends T ? IsAny extends true ? false : true : false; export type UnknownKeys = { [K in keyof T]: IsUnknown extends true ? K : never; }[keyof T]; export type ExcludeUnknown = IsUnknown extends true ? never : T; //# sourceMappingURL=unknown.d.ts.map