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