import type { RESTGetAPIStickerPackResult, RESTGetAPIStickerResult, RESTGetStickerPacksResult } from '../../types'; import type { RestArgumentsNoBody } from '../api'; export interface StickerRoutes { stickers(id: string): { get(args?: RestArgumentsNoBody): Promise; }; 'sticker-packs': { get(args?: RestArgumentsNoBody): Promise; (id: string): { get(args?: RestArgumentsNoBody): Promise; }; }; }