import { WikimediaEventBase, WikimediaEventMeta } from './EventStream'; type EventGateTestEventBase = Omit & { meta: Omit; }; export default interface EventGateTestEvent extends EventGateTestEventBase { /** * A URI identifying the JSONSchema for this event. This should match an schema's $id * in a schema repository. E.g. /schema/title/1.0.0 */ '$schema': string; 'meta': Omit; test: string; /** * We want to support 'map' types using additionalProperties to specify * the value types. (Keys are always strings.) */ test_map?: Record; } /** * * @param object */ export declare function isEventGateTestEvent(object: any): object is EventGateTestEvent; export {};