import { defaultOnAny } from '..'; type DEFAULT_CONFIG = { development: false; conditionWay: 'natural'; }; type CLIENT_CONFIG = defaultOnAny; export type CONFIG = Omit & CLIENT_CONFIG; export {};