import type { Project, SourceFile } from "ts-morph"; import type { FunctionDescription } from "./common.mjs"; export type Service = { node: SourceFile; methods: Array; }; export declare function getServices(project: Project): Promise; export declare function getMethodsFromService(node: SourceFile): FunctionDescription[];