import { operations } from "./operations"; declare type SExpr = string | number | [string, SExpr[]]; export interface CompiledExpression { expression: string | number; types: string[]; } declare const compile: (sexp: SExpr) => CompiledExpression; export { compile, operations };