import { default as React } from 'react'; interface ScratchToRevealProps { children: React.ReactNode; width: number; height: number; minScratchPercentage?: number; className?: string; onComplete?: () => void; gradientColors?: [string, string, string]; } export declare const ScratchToReveal: React.FC; export {};