export interface ObjectFactory { /** * The name of the factory function. * @example 'createUseFetch' */ name: string; factory: T; } /** * Define a factory for a function that should be registered for automatic key injection. * @since 4.2.0 * @param factory */ export declare function defineKeyedFunctionFactory(factory: ObjectFactory): T;