import { HTMLAttributes } from 'react';
import { IComponentBaseProps } from '../types';
export declare const MODAL = "modal";
export type Position = "bottom" | "center" | "top" | "responsive";
export declare const MODAL_MAP: Partial>;
export interface ModalProps extends HTMLAttributes, IComponentBaseProps {
open?: boolean;
onClose?: () => void;
showCloseButton?: boolean;
closeOnEscapeKeyDown?: boolean;
closeOnBackdropClick?: boolean;
position?: Position;
}