import type { GenericResponderInteraction } from "./manager.js"; export type WithCustomId = T & { customId: string; }; type EmitResponderInteraction = Omit; interface EmitResponderData { customId: string; interaction: EmitResponderInteraction; } export declare function emitResponder(customId: string, interaction: EmitResponderInteraction): void; export declare function emitResponder(data: EmitResponderData): void; export {};