import React from 'react'; type Props = { open: boolean; handleClose: () => void; message: (string | JSX.Element)[]; type: 'delete' | 'unlink'; handleSubmit: () => void; }; export declare const ConfirmationDialog: ({ open, handleClose, message, type, handleSubmit, }: Props) => React.JSX.Element; export {};