import type { ComponentProps, CSSProperties } from 'react'; import type { Modal } from '.'; import type { ModalPlacement, ModalSize } from './types'; type ModalContentProps = ComponentProps & { open: boolean; placement: ModalPlacement; finalSize: ModalSize; finalId: string; handleOpen: () => void; handleToggle: () => void; handleClose: () => void; dataTestId?: string; image?: string; style?: CSSProperties; }; export declare const ModalContent: ({ open, placement, finalSize, ariaLabel, hideOnClickOutside, hideOnEsc, preventBodyScroll, handleClose, className, backdropClassName, dataTestId, isClosable, children, handleOpen, handleToggle, finalId, image, closeButtonSentiment, style, ref, isDrawer, }: ModalContentProps) => import("react").JSX.Element | null; export {}; //# sourceMappingURL=ModalContent.d.ts.map