/** * @returns Awaitable promise for waiting X time. * @param time */ export declare const wait: (time: number) => Promise; /** * @returns A promise that resolves once Webflow has fully loaded. */ export declare const waitWebflowReady: () => Promise; /** * @returns A promise that resolves once the DOM is ready. */ export declare const waitDOMReady: () => Promise;