import Alarm from './models/Alarm'; import { type AlarmSettings } from './types/Alarm.types'; declare function scheduleAlarm(alarm: AlarmSettings): Promise; declare function enableAlarm(uid: string): Promise; declare function disableAlarm(uid: string): Promise; declare function stopAlarm(): Promise; declare function snoozeAlarm(): Promise; declare function removeAlarm(uid: string): Promise; declare function updateAlarm(alarm: AlarmSettings): Promise; declare function removeAllAlarms(): Promise; declare function getAllAlarms(): Promise; declare function getAlarm(uid: string): Promise; declare function getAlarmState(): Promise; declare function multiply(a: number, b: number): Promise; export default Alarm; export { scheduleAlarm, enableAlarm, disableAlarm, stopAlarm, snoozeAlarm, removeAlarm, updateAlarm, removeAllAlarms, getAllAlarms, getAlarm, getAlarmState, multiply }; //# sourceMappingURL=index.d.ts.map