UNPKG

@wulperstudio/cms

Version:
9 lines (8 loc) 258 B
import React from 'react'; export interface DeleteDialogModel { textConfirmButton?: string; textCancelButton?: string; onClickConfirm?: () => void; onClickCancel?: () => void; } export declare const DeleteDialog: React.FC<DeleteDialogModel>;