import { ButtonStyle } from 'discord.js'; import type { CommandContext } from '../lib/structures/contexts/CommandContext'; import type { ComponentContext } from '../lib/structures/contexts/ComponentContext'; export interface ConfirmOptions { message?: string | ((ctx: CommandContext | ComponentContext) => string); time?: number; ephemeral?: boolean; button?: { label?: string; style?: ButtonStyle; emoji?: string; }; } export declare function confirm(ctx: CommandContext | ComponentContext, options?: ConfirmOptions): Promise; //# sourceMappingURL=confirm.d.ts.map