import { PropsWithChildren } from "react"; import { ModalProps } from "./modal.component"; export interface RemoveModalProps extends ModalProps { valueToCompare: string; itemType?: string; i18n?: (f: string) => string; maxWidth?: string; } export declare function RemoveModal({ maxWidth, children, ...props }: PropsWithChildren): JSX.Element;