/**
 * @jsxRuntime classic
 * @jsx jsx
 */
import { type FC } from 'react';
import type { InlineDialogProps } from './types';
/**
 * Top-layer implementation of InlineDialog.
 *
 * Replaces the legacy rendering pipeline (Popper.js + Portal + @atlaskit/layering)
 * with the native Popover API + CSS Anchor Positioning via @atlaskit/top-layer.
 *
 * Gated behind the `platform-dst-top-layer` feature flag.
 */
declare const InlineDialogTopLayer: FC<InlineDialogProps>;
export default InlineDialogTopLayer;
