mycrossword
Version:
React crossword component
11 lines (9 loc) • 316 B
TypeScript
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 {};