import { Injector } from '@angular/core'; import { AbstractInput } from '../abstract-input'; export declare class DurationInputComponent extends AbstractInput { protected injector: Injector; days: number; hours: number; minutes: number; constructor(injector: Injector); /** * Update the value using the combination of the different duration * units and turning them back into seconds */ change(): void; /** * Store the seconds that have been provided individually as days, hours, and minutes * and convert them from seconds into their respective units. * @param value */ value: number; }