declare global { namespace Voltiso { /** * Symbol for things that are less defined than `null` and `undefined`. * * 🌿 Meant to be used as type-only, so that generics can represent all * runtime values plus this special one. */ const UNSET: unique symbol; /** * Symbol for things that are less defined than `null` and `undefined`. * * 🌿 Meant to be used as type-only, so that generics can represent all * runtime values plus this special one. */ type UNSET = typeof UNSET; } } /** * Symbol for things that are less defined than `null` and `undefined`. * * 🌿 Meant to be used as type-only, so that generics can represent all runtime * values plus this special one. */ export type UNSET = typeof Voltiso.UNSET; /** * Symbol for things that are less defined than `null` and `undefined`. * * 🌿 Meant to be used as type-only, so that generics can represent all runtime * values plus this special one. */ export declare const UNSET: UNSET; //# sourceMappingURL=unset.d.ts.map