import type { FC, PropsWithChildren } from 'react'; import { NativeProps } from '../../utils/native-props.js'; import { PopupBaseProps } from './popup-base-props.js'; export type PopupProps = PopupBaseProps & PropsWithChildren<{ position?: 'bottom' | 'top' | 'left' | 'right'; closeOnSwipe?: boolean; }> & NativeProps<'--z-index'>; export declare const Popup: FC;