declare module "@lucky-canvas/react" { import { FC } from "react"; interface LuckyCanvasProps { ref: any; width: string; height: string; blocks: B[]; prizes: P[]; buttons: A[]; onStart: () => void; onEnd: (p: P) => void; } export const LuckyWheel: FC; }