import type { ApiClient } from "@promobase/sdk-runtime"; import type { AdAccountFields } from "./ad-account.ts"; import type { AdKeywordsFields } from "./ad-keywords.ts"; export interface AdSavedKeywordsFields { account: AdAccountFields; id: string; keywords: AdKeywordsFields; name: string; run_status: string; time_created: string; time_updated: string; } export declare function adSavedKeywordsNode(client: ApiClient, id: string): { __path: string; __brand: AdSavedKeywordsFields; get: (opts: { fields: F; params?: Record; }) => Promise>; }; //# sourceMappingURL=ad-saved-keywords.d.ts.map