import type { INodeType, INodeTypeDescription } from 'n8n-workflow'; import { execute } from './execute'; import { getGames, getAccountOffers } from './methods'; export declare class GameBoost implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getGames: typeof getGames; getAccountOffers: typeof getAccountOffers; }; }; execute: typeof execute; }