import { ConfigObject } from '../types'; type ConfigFactoryReturnValue = T | Promise; export type ConfigFactory = () => ConfigFactoryReturnValue; export {};