import { type IngestEndpointDisabledEventData } from "./ingestEndpointDisabledEventData";
export interface IngestEndpointDisabledEvent {
    data: IngestEndpointDisabledEventData;
    type: string;
}
export declare const IngestEndpointDisabledEventSerializer: {
    _fromJsonObject(object: any): IngestEndpointDisabledEvent;
    _toJsonObject(self: IngestEndpointDisabledEvent): any;
};
