import React from "react"; import type { ActionConfig, AutocompleteRebuiltProps, MenuFooter, MenuHeader, OptionLike } from "../Autocomplete.types"; interface PersistentRegionProps { readonly items: Array> | MenuFooter>>; readonly position: "header" | "footer"; readonly activeIndex: number | null; readonly indexOffset: number; readonly listboxId?: string; readonly getItemProps: (args?: Record) => Record; readonly listRef: React.RefObject>; readonly customRenderHeader?: AutocompleteRebuiltProps["customRenderHeader"]; readonly customRenderFooter?: AutocompleteRebuiltProps["customRenderFooter"]; readonly className?: string; readonly style?: React.CSSProperties; readonly onAction: (action: ActionConfig) => void; readonly onInteractionPointerDown: (e: React.PointerEvent) => void; } export declare function PersistentRegion({ items, position, activeIndex, indexOffset, getItemProps, listRef, customRenderHeader, customRenderFooter, className, style, onAction, onInteractionPointerDown, }: PersistentRegionProps): React.JSX.Element | null; export {};