/**
 * Metrics configuration type definition.
 * This type is used to define the configuration for metrics collection in Unity.
 * It includes an optional interval property to specify the frequency of metrics collection.
 */
type MetricsConfig = {
    /**
     * The interval in milliseconds at which to collect metrics. Otherwise an
     * interval of 1000 milliseconds (1 second) is used by default.
     */
    interval?: number;
};
export type { MetricsConfig };
//# sourceMappingURL=metrics-config.d.ts.map