import { PauseType } from './types/PauseType.mjs';
import { RepeatType } from './types/RepeatType.mjs';

declare const PIXIVN_VERSION = "0.6.14";
declare const Repeat: RepeatType;
/**
 * Pause the tickers for a duration.
 * @param duration Duration in seconds
 * @returns The pause object
 */
declare function Pause(duration: number): PauseType;

export { PIXIVN_VERSION, Pause, Repeat };
