export type Alignment = "left" | "right"; type ActionPopoverContextType = { setOpenPopover: (isOpen: boolean) => void; focusButton: () => void; horizontalAlignment: Alignment; submenuPosition: Alignment; selectedSubmenuRef: HTMLUListElement | null; setSelectedSubmenuRef: (ref: HTMLUListElement | null) => void; }; export declare const ActionPopoverProvider: import("react").Provider; export declare const useActionPopoverContext: () => ActionPopoverContextType; export {};