import { ImageResolvedAssetSource, ImageSourcePropType, ViewStyle } from 'react-native'; import type { Point } from './ScratchGrid'; export type ScratchCardProps = { source: ImageSourcePropType; brushWidth: number; onScratch?: (scratchPercentage: number) => void; style?: ViewStyle; }; export interface UserInput { nativeEvent: Point; } interface NativeViewProps { image: ImageResolvedAssetSource; brushWidth: number; onScratch?: (event: UserInput) => void; style?: ViewStyle; } export declare const RnScratchCard: import("react-native").HostComponent | (() => never); export {}; //# sourceMappingURL=RnScratchCard.d.ts.map