import { ComponentInterface } from '../stencil-public-runtime'; /** * Emits specified events from a given component context with the provided detail. * * @template T - The type of the event detail. Defaults to the type of `CustomEvent['detail']`. * @param context - The component context that contains the event emitters. * @param events - An array of event names to be emitted. * @param detail - The detail payload to be passed to each emitted event. * @returns The first emitted event (useful for checking `defaultPrevented`). */ declare const mirrorEmit: (context: ComponentInterface, events: Array, detail?: T) => CustomEvent; export default mirrorEmit;