import type { DependencyList } from '../type';
export default function useCreation<T>(factory: () => T, deps: DependencyList): T;
