import type { RefinementObject } from './types.js'; type ChainFunc = (...args: any[]) => any; interface Closure { push(refinementObject: RefinementObject): void; getChain(funcName: string): ChainFunc[]; } export declare function initClosure(): Closure; export {};