import * as React from "react"; import type { FormHostMembers } from "../hostContext"; export declare const signatureDialogClasses: { canvas: string; canvasAnnotations: string; container: string; mark: string; titleText: string; }; interface StyledDialogProps { cancelCaption: string; clearCaption: string; doneCaption: string; format: string; height: number; helperText: React.JSX.Element | null; host: FormHostMembers; onClose: (confirm: boolean, dataUrl: string | undefined) => void; title: React.JSX.Element | null; undoCaption: string; width: number; } declare const SignatureDialog: ({ cancelCaption, clearCaption, doneCaption, format, height, helperText, host, title, undoCaption, width, onClose, }: StyledDialogProps) => React.JSX.Element; export default SignatureDialog;