import type { SExpr } from './types.js'; export declare class ParseError extends Error { readonly position: number; constructor(message: string, position: number); } export declare function parse(input: string): SExpr; export declare function parseAsList(input: string): SExpr[]; //# sourceMappingURL=parse.d.ts.map