import type { RecursivePartial } from "./types"; /** * Swallow returns a recrusive empty object, allowing you to do * `swallow().a.b.c['c'].f().g` without error. This is used for server clients * that do not implement the DOM. * @param obj */ declare const swallow: (obj?: RecursivePartial) => T; export { swallow };