import ts from 'typescript';
declare const getMainMethodNode: (nodes: ts.Node[], mainMethodName: string) => ts.FunctionDeclaration | ts.ArrowFunction | null;
export default getMainMethodNode;
