import { type CompilerContext } from "../context/context"; import type { FactoryAst } from "../ast/ast-helpers"; export declare const setAstFactoryToStore: (ctx: CompilerContext, ast: FactoryAst) => void; export declare const getAstFactoryFromStore: (ctx: CompilerContext) => FactoryAst;