/**
 * 创建工厂函数
 */
declare function createFactory<T>(initial?: T): readonly [(value: T) => T, () => T];

export { createFactory };
