import { AccountType } from "./currencies";
export interface LogEntry {
    duration: number;
    currencyName: string;
    coinModuleName: string;
    operationType: "scan" | "sync";
    accountType: AccountType;
    transactions: number;
    accountAddressOrXpub: string;
}
export declare function submitLogs(entries: LogEntry[]): Promise<void>;
//# sourceMappingURL=datadog.d.ts.map