import React from "react";
interface ScratcherProps {
    children: React.ReactNode;
    width: number;
    height: number;
    minScratchPercentage?: number;
    className?: string;
    onComplete?: () => void;
    gradientColors?: [string, string, string];
}
export declare const Scratcher: React.FC<ScratcherProps>;
export {};
