UNPKG

mycrossword

Version:
12 lines (11 loc) 354 B
import * as React from 'react'; export interface IntroProps { continueLabel?: string; countdown?: { seconds: number; label?: string; }; node: React.ReactNode; onContinue: () => void; } export default function Intro({ continueLabel, countdown, node, onContinue, }: IntroProps): import("react/jsx-runtime").JSX.Element;