/**
 * Kaia Node - Modular Version
 *
 * This is the modular version of the Kaia node that uses separate API modules.
 *
 * IMPORTANT: This file demonstrates the modular structure. To complete the migration:
 * 1. Extract all API properties and handlers to separate modules in the apis/ directory
 * 2. Import them here and concatenate the properties arrays
 * 3. Replace the original Kaia.node.ts with this modular version
 *
 * DO NOT add new APIs directly to this file - always create separate modules!
 */
import { INodeExecutionData, INodeType, INodeTypeDescription, IExecuteFunctions } from 'n8n-workflow';
export declare class Kaia implements INodeType {
    description: INodeTypeDescription;
    execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}
//# sourceMappingURL=Kaia.node.modular.d.ts.map