lorehub
Version:
Capture and surface the collective wisdom of your codebase
10 lines • 336 B
TypeScript
import React from 'react';
interface ConfirmDialogProps {
message: string;
onConfirm: () => void;
onCancel: () => void;
dangerous?: boolean;
}
export declare function ConfirmDialog({ message, onConfirm, onCancel, dangerous }: ConfirmDialogProps): React.JSX.Element;
export {};
//# sourceMappingURL=ConfirmDialog.d.ts.map