import { ExtendedInteraction, ExtendedMessage, CustomizableEmbed } from '../typedef'; /** * **Documentation Url** of the options: https://simplyd.js.org/docs/deprecated/stealEmoji#stealoptions */ export type stealOptions = { embed?: CustomizableEmbed; emoji?: string; name?: string; strict?: boolean; }; /** * ## _~stealEmoji~_ * How cool is **stealing an emoji** from another server ? Feel the power with this function * * @deprecated **Removed from the package** * * @param {ExtendedMessage|ExtendedInteraction} msgOrint [`ExtendedMessage`](https://simplyd.js.org/docs/typedef/extendedmessage) | [`ExtendedInteraction`](https://simplyd.js.org/docs/typedef/extendedinteraction) * @param {stealOptions} options [`stealOptions`](https://simplyd.js.org/docs/deprecated/stealEmoji#stealOptions) * * --- * * @link [`Documentation`](https://simplyd.js.org/docs/deprecated/stealEmoji) * @example simplydjs.stealEmoji(interaction) */ export declare function stealEmoji(msgOrint: ExtendedMessage | ExtendedInteraction, options?: stealOptions): Promise;