import type { FunctionDecl } from "../../src/node-api-functions.js"; type FunctionOptions = FunctionDecl & { extern?: true; static?: true; namespace?: string; body?: string; argumentNames?: string[]; }; export declare function generateFunction({ extern, static: staticMember, returnType, namespace, name, argumentTypes, argumentNames, noReturn, body, }: FunctionOptions): string; export {}; //# sourceMappingURL=shared.d.ts.map