/**
 * System metadata structure
 */
export interface SystemMetadata {
    hostname: string;
    cpu: {
        count: number;
        model: string;
    };
    memory: {
        total: string;
    };
    os: string;
    nodejs: string;
    playwright: string;
}
/**
 * Collector for system metadata
 */
export declare class SystemCollector {
    /**
     * Gather system metadata
     */
    static collect(): SystemMetadata;
}
//# sourceMappingURL=system.d.ts.map