import type { ApiClient } from "@promobase/sdk-runtime"; import { Cursor } from "@promobase/sdk-runtime"; import type { IGMediaFields } from "./ig-media.ts"; export interface ShadowIGHashtagFields { id: string; name: string; } export interface ShadowIGHashtagListRecentMediaParams { user_id: string; [key: string]: unknown; } export interface ShadowIGHashtagListTopMediaParams { user_id: string; [key: string]: unknown; } export declare function shadowIGHashtagNode(client: ApiClient, id: string): { __path: string; __brand: ShadowIGHashtagFields; get: (opts: { fields: F; params?: Record; }) => Promise>; recentMedia: (opts: { fields: F; params?: ShadowIGHashtagListRecentMediaParams; }) => Cursor>; topMedia: (opts: { fields: F; params?: ShadowIGHashtagListTopMediaParams; }) => Cursor>; }; //# sourceMappingURL=shadow-ig-hashtag.d.ts.map