/**
 * Return the second (0-59) for a given ISO 8601 time string.
 *
 * - Returns zero-padded string for second.
 * - Returns "" for invalid input.
 *
 * @param value ISO time string
 * @returns Second (00-59) or "" on invalid input
 *
 * @example parseSecondFromTime("12:30:45") // "45"
 * @example parseSecondFromTime("12:00:00") // "00"
 * @example parseSecondFromTime("invalid") // ""
 */
export declare function parseSecondFromTime(value: string): string;
