import type { TRoleRequiringAccessibleName, TRoleWithImplicitName } from './role-types'; /** * Returns `true` when the given popover role moves focus into the popover * on open, and `false` otherwise (including when `role` is `undefined`). */ export declare function shouldFocusIntoPopover({ role, }: { role: TRoleRequiringAccessibleName | TRoleWithImplicitName | undefined; }): boolean;