type GetFunctionKey = { [K in keyof T]: T[K] extends (...args: any) => any ? K : never; }[keyof T]; type WX = Pick>; declare module '../codelet' { interface Codelet extends WX { } } export declare const apiProxy: (col: import("../codelet").Codelet) => void; export {};