import { InputFileInputUnion } from '../inputs'; import { ErrorUnion, OkUnion } from '../outputs'; /** * Removes a sticker from the list of favorite stickers * @param {Object} params * @param {InputFileInputUnion} [params.sticker] - Sticker file to delete from the * list * @param {Object} state * @returns {OkUnion | ErrorUnion} */ export declare type RemoveFavoriteStickerMethod = (params: RemoveFavoriteStickerParams, state?: Record) => Promise; export interface RemoveFavoriteStickerParams { /** Sticker file to delete from the list */ sticker?: InputFileInputUnion; }