@firecms/core
Version:
Awesome Firebase/Firestore-based headless open-source CMS
10 lines (9 loc) • 358 B
TypeScript
import React from "react";
export interface UnsavedChangesDialogProps {
open: boolean;
body?: React.ReactNode;
title?: string;
handleOk: () => void;
handleCancel: () => void;
}
export declare function UnsavedChangesDialog({ open, handleOk, handleCancel, body, title }: UnsavedChangesDialogProps): import("react/jsx-runtime").JSX.Element;