import type { ApiClient } from "@promobase/sdk-runtime"; export interface ProductFeedRuleFields { attribute: string; id: string; params: Record[]; rule_type: string; } export interface ProductFeedRuleUpdateParams { params?: Record; [key: string]: unknown; } export declare function productFeedRuleNode(client: ApiClient, id: string): { __path: string; __brand: ProductFeedRuleFields; get: (opts: { fields: F; params?: Record; }) => Promise>; update: (params: ProductFeedRuleUpdateParams) => Promise; delete: () => Promise; }; //# sourceMappingURL=product-feed-rule.d.ts.map