import { CoralogixEventType, CoralogixOtelWebOptionsInstrumentations } from '../types';
export declare enum ResourceInitiatorTypes {
    Media = "media",
    Script = "script",
    Css = "css",
    Beacon = "beacon",
    Img = "img",
    Font = "font",
    Doc = "doc",
    Xhr = "xmlhttprequest",
    Fetch = "fetch",
    Iframe = "iframe",
    Video = "video",
    Audio = "audio",
    Track = "track",
    Other = "other"
}
export type InternalInstrumentationConfig = {
    Instrument: any;
    confKey: keyof CoralogixOtelWebOptionsInstrumentations | CoralogixEventType;
    disable: boolean;
};
