UNPKG

@firecms/core

Version:

Awesome Firebase/Firestore-based headless open-source CMS

9 lines (8 loc) 331 B
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;