/** * @jsxRuntime classic * @jsx jsx */ import { type MenuProps, type OptionType } from '@atlaskit/select'; /** * Top-layer version of the date picker menu. * * Uses `Popover` + `useAnchorPosition` so the calendar renders in the * browser's top layer via the native Popover API and is positioned via * CSS Anchor Positioning. This avoids overflow clipping, z-index wars, * and portal-based layering. * * Gated behind the `platform-dst-top-layer` feature flag. */ export declare const MenuTopLayer: ({ selectProps, innerProps }: MenuProps) => JSX.Element;