/**
 * Return true if the first date is earlier than the second date
 */
export declare const isBefore: (beforeDate: Date | undefined, afterDate: Date | undefined) => boolean;
