import type React from "react"; export type ModalFooterPropsType = { children?: React.ReactNode; className?: string; }; declare const ModalFooter: ({ children, className }: ModalFooterPropsType) => import("react/jsx-runtime").JSX.Element; export default ModalFooter;