import { INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class ScaleFluidly implements INodeType {
    description: INodeTypeDescription;
    getToolParameters(): {
        type: string;
        properties: {
            request_info: {
                type: string;
                description: string;
            };
        };
        required: never[];
    };
    execute(this: any): Promise<INodeExecutionData[][]>;
}
