/**
 * A {@link Specification} that passes when the first item in an
 * array is Day instance that is the same day as the second item.
 *
 * @public
 * @extends {Specification}
 */
export default class SameDay extends Specification {
    /**
     * @protected
     * @override
     * @param {*} data
     * @returns {boolean}
     */
    protected override _evaluate(data: any): boolean;
}
import Specification from './../Specification.js';
