/** * Body content area inside an `r-popover`. Place in the `content` slot of `r-popover`. * * Example * ``` * * * Here is some additional context or information. * * * ``` * * @slot - Body content displayed inside the popover */ 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; }