import { Field } from "./Field"; export declare class TimeField extends Field { constructor(start: number, length: number, nullable?: boolean, nullChars?: string[]); /** * 0745 -> 07:45:00 * 0745H -> 07:45:30 */ protected parse(value: string): string; }