import { InputFileInputUnion } from '../inputs'; import { ErrorUnion, OkUnion } from '../outputs'; /** * Removes a sticker from the set to which it belongs; for bots only. The sticker set * must have been created by the bot * @param {Object} params * @param {InputFileInputUnion} [params.sticker] - Sticker * @param {Object} state * @returns {OkUnion | ErrorUnion} */ export declare type RemoveStickerFromSetMethod = (params: RemoveStickerFromSetParams, state?: Record) => Promise; export interface RemoveStickerFromSetParams { /** Sticker */ sticker?: InputFileInputUnion; }