import type { chococake } from './really_any'; /** * Does nothing, but preserves the function in the bundle * Compiler is tricked into thinking the function is used * * @param value any function to preserve * @returns nothing * * @private within the repository */ export declare function $preserve(...value: Array): void; /** * DO NOT USE THIS FUNCTION * Only purpose of this function is to trick the compiler and javascript engine * that `_preserved` array can be used in the future and should not be garbage collected * * @private internal for `preserve` */ export declare function __DO_NOT_USE_getPreserved(): Array;