import type { OwnerInformation } from '@directus/types';
import type { TelemetryReport } from '../types/report.js';
export type OwnerReport = OwnerInformation & {
    project_id: string;
    version: string;
};
/**
 * Post an anonymous usage report to the centralized intake server
 */
export declare const sendReport: (report: TelemetryReport | OwnerReport) => Promise<void>;
