import type { BlobHandle } from "../platform/web/dom/BlobHandle"; import type { RequestFunction } from "../platform/types/types"; import type { Platform } from "../platform/web/Platform"; import type { Session } from "../matrix/Session"; type RageshakeData = { text?: string; userAgent: string; app: string; version: string; label?: string; }; export declare function submitLogsToRageshakeServer(data: RageshakeData, logsBlob: BlobHandle, submitUrl: string, request: RequestFunction): Promise; /** @throws {Error} */ export declare function submitLogsFromSessionToDefaultServer(session: Session, platform: Platform): Promise; export {};