import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class CarboneLifecycle implements INodeType {
    listTemplates(this: IExecuteFunctions): Promise<Array<{
        name: string;
        value: string;
    }>>;
    description: INodeTypeDescription;
    execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}
