UNPKG

@atlaskit/datetime-picker

Version:

A date time picker allows the user to select an associated date and time.

15 lines (14 loc) 481 B
/** * @jsxRuntime classic * @jsx jsx */ import type { MenuProps, OptionType } from '@atlaskit/select/types'; /** * Top-layer version of the date picker menu. * * The surrounding react-select menu portal owns the native popover and * positioning. This component only supplies the calendar dialog content. * * Gated behind the `platform-dst-top-layer` feature flag. */ export declare const MenuTopLayer: ({ selectProps, innerProps }: MenuProps<OptionType>) => JSX.Element;