declare class MdapiPollIntervalStrategy {
    [property: string]: any;
    constructor(sourceElementsToUpsert: any, sourceElementsToDelete: any);
    /**
     * Returns an appropriate polling interval (in milliseconds) for the given iteration.
     */
    getInterval(iteration: any): number;
}
export = MdapiPollIntervalStrategy;
