/** * Returns a promise that resolves after the specified number of seconds. * * Used to enforce a minimum display duration for loading indicators * (e.g. showing the spinner for at least 1 second during password verification). * * @param seconds - The duration to wait, in seconds. * @returns A promise that resolves when the delay has elapsed. */ declare const _default: (seconds: number) => Promise; export default _default;