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