import { ModalFactory as MantineModalFactory } from '@mantine/core';
import { ModalFooter as PlasmaModalFooter } from './ModalFooter';
type PlasmaModalFactory = Omit<MantineModalFactory, 'staticComponents'> & {
    staticComponents: MantineModalFactory['staticComponents'] & {
        Footer: typeof PlasmaModalFooter;
    };
};
export declare const Modal: import("@mantine/core").MantineComponent<PlasmaModalFactory>;
export type ModalFactory = PlasmaModalFactory;
export {};
//# sourceMappingURL=Modal.d.ts.map