/** * Check if given is a string representing a `CronLastValue`. * * @category Predicates * @example * ```typescript * isStringLastValue("7L"); // true * isStringLastValue("7l"); // true * isStringLastValue("100L"); // false * isStringLastValue("INVALID"); // false * ``` * @param value Value to check. * @returns Returns `true` if is a string representing a `CronLastValue`, `false` otherwise. */ export declare const isStringLastValue: (value: unknown) => value is string;