import { Result } from "../result"; import { RuntimeType } from "../issues/shared"; import { ConstraintType } from "../type"; export type NeverIssue = { readonly kind: "never"; readonly subject: RuntimeType; }; export declare class Never extends ConstraintType { check(val: any): Result; } export declare const never: Never;