import { type MenuProps, type OptionType } from '@atlaskit/select'; /** * Top-layer version of the fixed layer menu used in the time picker. * * Uses `Popover` + `useAnchorPosition` so the time options list 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 FixedLayerMenuTopLayer: ({ className, clearValue, cx, getStyles, getValue, hasValue, innerProps, innerRef, isLoading, isMulti, isRtl, maxMenuHeight, menuPlacement, menuPosition, menuShouldScrollIntoView, minMenuHeight, options, placement, selectOption, selectProps, setValue, children, ...rest }: MenuProps) => JSX.Element;