import { Sym } from './sym.js'; import type { SExpr, SList } from './types.js'; export declare function sym(name: string): Sym; export declare function str(value: string): string; export declare function num(value: number): number; export declare function s(tag: string, ...children: SExpr[]): SList; export declare function ss(...children: SExpr[]): SList; export declare function yes(): Sym; export declare function no(): Sym; //# sourceMappingURL=build.d.ts.map