/**
* A multiplexed Report object wraps an encoded report in bytes format
*/
export type Report = {
    /**
    * The type of the report
    */
    type: string;
    /**
    * The payload of contans the actual report
    */
    payload: string;
    /**
    * The version of the schema the payload holds
    */
    schemaVersion?: string;
};
//# sourceMappingURL=Report.d.ts.map