import 'toastify-js/src/toastify.css'; interface ITimeAlarmConstructor { isRecursive?: boolean; seconds: number; customStyle?: any; customMessage?: string; } declare class TimeAlarm { private enabled; private isRecursive; private seconds; private customStyle?; private customMessage?; private timer; constructor(data: ITimeAlarmConstructor); start: (minCounter?: number) => void; clear: () => void; } export default TimeAlarm;