declare const __brand: unique symbol;
export type Unrecognized<T> = T & {
    [__brand]: "unrecognized";
};
declare function unrecognized<T>(value: T): Unrecognized<T>;
export declare function startCountingUnrecognized(): {
    end: () => number;
};
export { unrecognized };
//# sourceMappingURL=unrecognized.d.ts.map