import type { SExpr } from './types.js'; export interface SerializeOptions { pretty?: boolean; indentSize?: number; } export declare function serialize(expr: SExpr, options?: SerializeOptions): string; export declare function prettyPrint(expr: SExpr, indentSize?: number): string; //# sourceMappingURL=serialize.d.ts.map