/** * @internal * * Set Attempt to set focus on the current node. * @param element - The node to attempt to focus on. * @param options - Options to determine if the focus ring should be shown. * @returns - true if element is focused. */ export declare const attemptFocus: (element: HTMLElement, options?: { focusVisible?: boolean; }) => boolean;