export type PauseConfig = { duration?: number; }; export type Pausing = Pause | PausingShortcut; export declare class Pause { /** * Create a pause with specific duration (milliseconds) that blocks until it passes. * @param duration - How long the player must wait. * @example * ```ts * Pause.wait(1000); * ``` */ static wait(duration: number): Pause; /** * Build a pause which can be inserted into sentences. * @param config - Optional duration in milliseconds. */ constructor(config?: Partial); }