import { DebugNodeJSONProps } from '../props-extractor'; import { DebugNode } from '../debug-node'; export interface DebugNodeConverterOptions { printComments?: boolean; ignoreProps?: string[]; } export interface DebugNodeJSON { node: Node; type: string; props: DebugNodeJSONProps; children: Node[] | DebugNodeJSON[] | null; $$typeof: Symbol; } declare const debugNodeToJSON: (debugNode: DebugNode, options: DebugNodeConverterOptions) => Node | DebugNodeJSON; export { debugNodeToJSON };