import { Expression } from './expression'; /** * Provide two time points of the same type * to create a range * * ``` * between(atMinute(2), atMinute(20)); // 2-20 * * * * * ``` * */ export declare function between(startExpression: T, endExpression: T): Expression;