/** * Utility for generating collector identification string */ /** * Collection methods available */ type CollectionMethod = 'global-monitoring' | 'manual' | 'auto-monitor'; /** * Gets the collector identification string * Format: "packagename-X.Y.Z-method" * @param method Optional collection method suffix * @returns Collector string identifying this SDK version and collection method */ declare function getCollectorString(method?: CollectionMethod): string; /** * Gets the package name */ declare function getPackageName(): string; /** * Gets the package version */ declare function getPackageVersion(): string; export { type CollectionMethod, getCollectorString, getPackageName, getPackageVersion };