import { SxProps } from "@mui/material"; interface IModalFooterProps { children: React.ReactNode; sx?: SxProps; } export declare const ModalFooter: ({ children, sx }: IModalFooterProps) => import("react").JSX.Element; export {};