import { type FunctionDeclaration, type SourceFile, type Node } from "@nightlycommit/typescript-parser"; export type AST = SourceFile; export declare const getChildNodes: (node: Node) => Array; export type Parser = (content: string) => AST; export declare const isARelevantFunctionDeclaration: (candidate: FunctionDeclaration) => boolean; export declare const isARelevantStatement: (candidate: Node) => boolean; export declare const createParser: () => Parser;