import type { ComponentPropsWithoutRef } from 'react'; type ModalPanelProps = ComponentPropsWithoutRef<'div'>; declare function ModalPanel({ 'aria-label': ariaLabel, 'aria-labelledby': ariaLabelledBy, onClick, onKeyDown, className, ...props }: ModalPanelProps): import("react/jsx-runtime").JSX.Element; export default ModalPanel; export type { ModalPanelProps };