import { Api } from '../components/types/types'; /** * Expose a function to the global DID_AGENTS_API object. * Will not override existing functions. * @param name The name of the function to expose. * @param fn The function to expose. */ export declare const exposeFunction: (name: K, fn: Api["functions"][K]) => void;