import * as t from 'io-ts'; import { Codec } from '../codec/Codec'; export type Sensitive = { value: T; readonly _tag: 'Sensitive'; }; export interface SensitiveInterface { fromValue: (value: T) => Sensitive; typeDescriptor: (descriptor: t.Type) => t.Type, Sensitive>; typeCodec: (descriptor: t.Type) => Codec>; } export declare const Sensitive: SensitiveInterface; //# sourceMappingURL=Sensitive.d.ts.map