import { IExecuteFunctions } from 'n8n-workflow';
export declare function getAllServices(this: IExecuteFunctions): Promise<any>;
export declare function getServiceById(this: IExecuteFunctions): Promise<{
    json: any;
    pairedItem: {
        item: number;
    };
}[]>;
export declare function createService(this: IExecuteFunctions): Promise<{
    json: any;
}[]>;
