/** * Defines a new global singleton instance of a value. * * @param key - The unique identifier for the singleton. * @param value - A function that returns the singleton instance. * @returns A function that returns the singleton instance. */ export declare const define: (key: string, value: () => T) => (() => T); //# sourceMappingURL=define.d.ts.map