import type { SupportOptions } from './installLogsCollector.types'; import type { LogType, Log, Severity } from './types'; /** * Installs the logs collector for cypress. Needs to be added to support file. */ declare function installLogsCollector(config?: SupportOptions): void; declare namespace installLogsCollector { export { LogType, Log, Severity, SupportOptions }; } export = installLogsCollector;