import { MemoryModificationGuard } from "./types.js"; //#region src/guard/no-guard.d.ts /** * Construct a `NO_GUARD` guard for the supplied tier (either * `'pure'` or `'side-effecting-no-memory'`). * * @stable */ declare function createNoGuard(tier: 'pure' | 'side-effecting-no-memory'): MemoryModificationGuard; //#endregion export { createNoGuard }; //# sourceMappingURL=no-guard.d.ts.map