import React from 'react';
import type SignaturePad from 'signature_pad';
export interface Signature {
    image: string;
    dots: SignaturePad.Point[][];
}
export interface OwnProps {
    value?: Signature;
    onChange?: (value?: Signature) => void;
}
declare const SignatureCanvas: (props: OwnProps) => React.ReactElement;
export default SignatureCanvas;
