type TFactoryProps = Partial<{ factory: Partial<{ html: string; }>; }>; /** * Получает флаг необходимости обернуть пользовательскую разметку модуля в Factory * @param props{Object=} * @returns {boolean} */ declare const isNeedFactory: (props: T) => boolean; export { isNeedFactory, };