/**
 * @param amount The amount of time to wait in milliseconds.
 * @return A promise that gets resolved after a given amount.
 */
export default function wait(amount?: number): Promise<void>;
