import { ErrorUnion, StickerSetsUnion } from '../outputs'; /** * Returns a list of sticker sets attached to a file. Currently only photos and videos * can have attached sticker sets * @param {Object} params * @param {number} [params.fileId] - File identifier * @param {Object} state * @returns {StickerSetsUnion | ErrorUnion} */ export declare type GetAttachedStickerSetsMethod = (params: GetAttachedStickerSetsParams, state?: Record) => Promise; export interface GetAttachedStickerSetsParams { /** File identifier */ fileId?: number; }