import { IExecuteFunctions, ILoadOptionsFunctions } from 'n8n-workflow';
import { INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class Prepr implements INodeType {
    methods: {
        loadOptions: {
            getFieldsForType(this: ILoadOptionsFunctions): Promise<any>;
            getTypenames(this: ILoadOptionsFunctions): Promise<any>;
            getLocales(this: ILoadOptionsFunctions): Promise<any>;
        };
    };
    description: INodeTypeDescription;
    execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}
