import { ConfigParams, PluginParams } from '@grnsft/if-core/types';
export declare const Subtract: (config: ConfigParams | undefined, parametersMetadata: import("@grnsft/if-core/types").PluginParametersMetadata, mapping: import("@grnsft/if-core/types").MappingParams) => {
    metadata: {
        inputs: {
            [x: string]: {
                description: string;
                unit: string;
                'aggregation-method': import("@grnsft/if-core/types").AggregationOptions;
            };
        };
        outputs: import("@grnsft/if-core/types").ParameterMetadata;
    };
    execute: (inputs: PluginParams[]) => Promise<{
        [x: string]: any;
    }[]>;
};
