import React from "react"; export interface ModalContentsProps { /** * Whether the modal is open or not */ isOpen: boolean; /** * Function called when the modal is closed */ onClose: () => void; /** * Human-readable selector used for writing tests */ "data-cy"?: string; /** * Allows custom styling */ className?: string; children?: React.ReactNode | React.ReactNode[]; } declare const ModalContents: ({ children, "data-cy": dataCy, className }: ModalContentsProps) => React.JSX.Element; export default ModalContents;