import { Resource, ResourceAttributes } from '@opentelemetry/resources'; import type { TelemetryConfig } from './config.js'; export declare function createResource(config: TelemetryConfig): Resource; export declare function getResourceAttributes(resource: Resource): ResourceAttributes; export interface ResourceHealth { healthy: boolean; attributes: ResourceAttributes; warnings: string[]; } export declare function checkResourceHealth(resource: Resource): ResourceHealth; export declare function createTestResource(serviceName?: string): Resource; //# sourceMappingURL=resources.d.ts.map