export declare class PopoverContent { host: HTMLRPopoverContentElement; connectedCallback(): void; disconnectedCallback(): void; /** * Set focus on the first focusable element within the popover content * @returns {Promise} The focused element or null if no element is found */ setFocus(): Promise; /** * Remove focus from the first focusable element within the popover content * @returns {Promise} */ setBlur(): Promise; private get activeElement(); /** * Get all focusable elements within the popover content * @returns {Promise} Array of focusable elements */ getActiveElements(): Promise; render(): any; }