import { ErrorUnion, OkUnion } from '../outputs'; /** * Succeeds after a specified amount of time has passed. Can be called before authorization. * Can be called before initialization * @param {Object} params * @param {number} [params.seconds] - Number of seconds before the function returns * @param {Object} state * @returns {OkUnion | ErrorUnion} */ export declare type SetAlarmMethod = (params: SetAlarmParams, state?: Record) => Promise; export interface SetAlarmParams { /** Number of seconds before the function returns */ seconds?: number; }