import React from 'react'; import { type ColorValue, type NativeSyntheticEvent, type ViewStyle } from 'react-native'; type SignEvent = { sign: string; }; type TRNSignatureView = { style?: ViewStyle; selectedTabColor?: ColorValue; selectedTabTextColor?: ColorValue; unselectedTabColor?: ColorValue; unselectedTabTextColor?: ColorValue; seekBarColor?: ColorValue; clearText?: string; getSignText?: string; capsTabText?: boolean; capsButtonText?: boolean; clearButtonBgColor?: ColorValue; clearTextColor?: ColorValue; getSignButtonBgColor?: ColorValue; getSignTextColor?: ColorValue; strokeColor?: ColorValue; drawStrokeWidth?: number; onGetSign: (event: NativeSyntheticEvent) => void; onDrawBegin?: () => void; onDrawEnd?: () => void; onClear?: () => void; }; declare const RNSignatureView: (props: TRNSignatureView) => React.JSX.Element; export default RNSignatureView; //# sourceMappingURL=index.d.ts.map