/** * Check if given is a string representing a `CronWeekValue`. * * @category Predicates * @example * ```typescript * isStringWeekValue("2"); // true * isStringWeekValue("8"); // false * ``` * @param value Value to check. * @returns Returns `true` if is a string representing a `CronWeekValue`, `false` otherwise. */ export declare const isStringWeekValue: (value: unknown) => value is string;