import { FormControl, ValidatorFn } from "@angular/forms"; import { Moment } from "moment"; export declare function DynMatchValidator(otherControlName: string): (control: FormControl) => { match: boolean; }; export declare function BusinessLogicValidator(): (control: FormControl) => any; export interface TimeData { hours: number; minutes: number; is24Hour: boolean; } export declare class TimeUtils { static parseTime(value: string): TimeData; static formatTime(date: Date | Moment): string; static applyTime(date: Date | Moment, time: TimeData): void; } export declare function TimeValidator(): ValidatorFn;