import * as t from '@rekajs/types'; export type StringifierOpts = { onStringifyNode: (node: t.ASTNode) => t.ASTNode | null | undefined; }; export declare class Stringifier { static toString(node: t.ASTNode, opts?: StringifierOpts): string; }