import type { FC, HTMLAttributes } from 'react';
export interface ModalFooterProps extends HTMLAttributes<HTMLDivElement> {
}
declare const ModalFooter: FC<ModalFooterProps>;
export default ModalFooter;
