from __future__ import annotations
import collections.abc
import datetime
import typing
from warnings import deprecated # type: ignore

import jpype # type: ignore
import jpype.protocol # type: ignore

import ghidra.app.util.exporter


class TraceViewXmlExporter(ghidra.app.util.exporter.XmlExporter):

    class_: typing.ClassVar[java.lang.Class]

    def __init__(self):
        ...


class TraceViewIntelHexExporter(ghidra.app.util.exporter.IntelHexExporter):

    class_: typing.ClassVar[java.lang.Class]

    def __init__(self):
        ...


class TraceViewBinaryExporter(ghidra.app.util.exporter.BinaryExporter):

    class_: typing.ClassVar[java.lang.Class]

    def __init__(self):
        ...


class TraceViewHtmlExporter(ghidra.app.util.exporter.HtmlExporter):

    class_: typing.ClassVar[java.lang.Class]

    def __init__(self):
        ...


class TraceViewAsciiExporter(ghidra.app.util.exporter.AsciiExporter):

    class_: typing.ClassVar[java.lang.Class]

    def __init__(self):
        ...



__all__ = ["TraceViewXmlExporter", "TraceViewIntelHexExporter", "TraceViewBinaryExporter", "TraceViewHtmlExporter", "TraceViewAsciiExporter"]
