interface AllDefinedOptions { /** * A callback that accepts a custom element tag name and returns `true` if the custom element should be defined before * resolving or `false` to skip it. The tag name is always in lowercase. */ match: (tagName: string) => boolean; /** * To wait for additional custom elements that may not be on the page when the function is called, provide them here. */ additionalElements: string | string[]; /** * The root in which to look for custom elements. Defaults to `document`. By design, shadow roots are not traversed, * but you can call this function and set `root` to a custom element's shadow root if needed. */ root: Document | ShadowRoot; } /** * Waits for custom elements that are currently on the page to be registered before resolving. This is sugar for * awaiting `customElements.whenDefined()` multiple times. By default, the function waits for all undefined Web Awesome * elements, but you can pass a custom match function to wait for other custom elements instead. * * The function returns with `Promise.all()`, so any loading errors will cause it to reject. Make sure you handle errors * accordingly using a try/catch block or a `.catch()`. * * @example * // Wait for Web Awesome elements * await allDefined(); * * // Wait for all custom elements that start with `foo-` as well as the `` element * await allDefined({ * match: tagName => tagName.startsWith('foo-'), * additionalElements: ['bar-button', 'baz-dialog'] * }); */ export declare function allDefined(options?: Partial): Promise; export {};