UNPKG

mycrossword

Version:
10 lines (9 loc) 315 B
export declare const DEFAULT_TIMEOUT = 10; interface ConfirmProps { buttonText: string; onCancel: () => void; onConfirm: () => void; timeout?: number; } export default function Confirm({ buttonText, onCancel, onConfirm, timeout, }: ConfirmProps): import("react/jsx-runtime").JSX.Element; export {};