import './style.scss'; type Props = { title: string; subtitle: string; onClose: () => void; onConfirm: () => void; disableClose?: boolean; disableEscapeClose?: boolean; }; export default function AppModalRemove({ title, subtitle, onClose, onConfirm, disableClose, disableEscapeClose, }: Props): import("react").JSX.Element; export declare const modalRemoveStyle: { position: string; top: string; left: string; transform: string; width: string; maxWidth: string; borderRadius: string; boxShadow: number; bgcolor: string; }; export {};