import { Context } from '../analytics/event-context'; export interface Metric { context: Context; id?: string; name: string; sent_at: Date; properties?: { [key: string]: unknown; }; } interface Params { project: string; profile_id?: string; metrics: Metric[]; } export declare function metrics({ project, ...params }: Params): true | Promise; export {};