import { APIEmbed } from 'discord.js'; import { ExtendedInteraction, ExtendedMessage } from '../typedef'; import { embedCreatorOptions } from '../embedCreator'; /** * ## _~embedCreate~_ * @deprecated Use {@link embedCreator()} * * @async * @param {ExtendedMessage | ExtendedInteraction} msgOrint [`ExtendedMessage`](https://simplyd.js.org/docs/typedef/extendedmessage) | [`ExtendedInteraction`](https://simplyd.js.org/docs/typedef/extendedinteraction) * @param {embedCreatorOptions} options [`embedCreatorOptions`](https://simplyd.js.org/docs/general/embedCreator#embedcreatoroptions) * @returns {Promise} [`APIEmbed`](https://discord-api-types.dev/api/discord-api-types-v10/interface/APIEmbed) * */ export declare function embedCreate(msgOrint: ExtendedMessage | ExtendedInteraction, options?: embedCreatorOptions): Promise;