import React from 'react'; interface SignatureInputProps { style?: any; title?: string; defaultValue?: any; readonly?: boolean; required?: boolean; onChange: (value: any) => void; enableFileSelection?: boolean; enablePicture?: boolean; cameraKey?: string; canvaSize?: any; returnBase64String?: boolean; iconSize?: number; /** * Use this option to use this widget inside a scrollable view to avoid conflicts. * Default value is false. */ popup?: boolean; } declare const SignatureInput: ({ style, title, defaultValue, readonly, required, onChange, enableFileSelection, enablePicture, cameraKey, canvaSize, returnBase64String, iconSize, popup, }: SignatureInputProps) => React.JSX.Element; export default SignatureInput;