import { ComponentProps as ComponentProps$1 } from "../utils/types/ComponentProps.js"; import { OverlayProps } from "../Overlay/Overlay.js"; import React from "react"; //#region src/Autocomplete/AutocompleteOverlay.d.ts type AutocompleteOverlayInternalProps = { /** * The ref of the element that the position of the menu is based on. By default, the menu is positioned based on the text input */ menuAnchorRef?: React.RefObject; /** * Props to be spread on the internal `Overlay` component. */ overlayProps?: Partial; children?: React.ReactNode; } & Partial & Pick; declare function AutocompleteOverlay({ menuAnchorRef, overlayProps: oldOverlayProps, children, className, ...newOverlayProps }: AutocompleteOverlayInternalProps): React.JSX.Element | null; declare namespace AutocompleteOverlay { var displayName: string; var __SLOT__: symbol; } type AutocompleteOverlayProps = ComponentProps$1; //#endregion export { AutocompleteOverlayProps, AutocompleteOverlay as default };