import { TrustLevelType } from '../types.js'; /** * TrustLevel - tipo puro */ export type TrustLevel = { readonly value: TrustLevelType; }; /** * Crea un TrustLevel - función pura */ export declare function createTrustLevel(value: TrustLevelType): TrustLevel; /** * Funciones puras para TrustLevel */ export declare function isTrusted(trust: TrustLevel): boolean; export declare function isSemiTrusted(trust: TrustLevel): boolean; export declare function isUntrusted(trust: TrustLevel): boolean; //# sourceMappingURL=TrustLevel.d.ts.map