import { ValueExactTime } from './ValueExactTime';
/**
 * Parses a time of format hours-minutes, optionally containing seconds and even centiseconds information.
 * @param value The value to parse
 * @category Value parsers
 */
export declare const parseExactTime: (value: string | null) => ValueExactTime | null;
