export default class ShuttlePolicy extends Policy {
    /**
     * the inteval value shuttles between min and max
     * @param {number} stepLength - the step length to change
     */
    constructor(stepLength: number);
    _stepLength: number;
    increasement: number;
    set stepLength(stepLength: number);
    get stepLength(): number;
}
export { ShuttlePolicy as ShuttlePolicyType };
import Policy from '../policy.js';
