export class MrpTimer { static template: string; static props: { value: { type: NumberConstructor; }; ongoing: { type: BooleanConstructor; optional: boolean; }; }; static defaultProps: { ongoing: boolean; }; setup(): void; state: any; lastDateTime: number | undefined; ongoing: any; get durationFormatted(): string; _runTimer(): void; timer: number | undefined; _runSleepTimer(): void; } export namespace mrpTimerField { export { MrpTimerField as component }; export let supportedTypes: string[]; } declare class MrpTimerField { static template: string; static components: { MrpTimer: typeof MrpTimer; }; static props: { id: { type: StringConstructor; optional: boolean; }; name: { type: StringConstructor; }; readonly: { type: BooleanConstructor; optional: boolean; }; record: { type: ObjectConstructor; }; }; setup(): void; orm: import('../../web/core/orm_service').ORM | undefined; duration: any; get durationFormatted(): string; get ongoing(): any; } export {};