import { EmbedBuilder } from 'discord.js'; import type { EmbedPresetOptions } from './types'; type Extras = Omit; export declare const Embeds: { /** ✅ Green embed — operation succeeded */ success: (title: string, description?: string, extras?: Extras) => EmbedBuilder; /** ❌ Red embed — something went wrong */ error: (title: string, description?: string, extras?: Extras) => EmbedBuilder; /** ℹ️ Blurple embed — neutral information */ info: (title: string, description?: string, extras?: Extras) => EmbedBuilder; /** ⚠️ Yellow embed — warning or heads-up */ warn: (title: string, description?: string, extras?: Extras) => EmbedBuilder; /** Build an embed with any hex colour */ custom: (color: number, opts: EmbedPresetOptions) => EmbedBuilder; }; export {}; //# sourceMappingURL=embeds.d.ts.map