import { SignatureComponentSchema } from '@open-formulieren/types'; import { RegistryEntry } from '../types'; export interface FormioSignatureFieldProps { componentDefinition: SignatureComponentSchema; } /** * A signature form field, complete with label, help text and validation errors. * * It contains a canvas on which the user can draw (continuous) lines, by holding the mouse button * and moving the mouse. Also works with a touch screen. The png image is base64-encoded and saved * to the Formik field when the user stops drawing. * * It includes a button with which the entire canvas can be cleared. */ export declare const FormioSignatureField: React.FC; declare const SignatureFieldComponent: RegistryEntry; export default SignatureFieldComponent;