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