import React from 'react'; import { Template, VideoSignature } from 'types/entities.types'; interface Props { className?: string; title: string | JSX.Element; dataCy: string; videoSignature: VideoSignature; onChange: (nextValue: VideoSignature, shouldSave?: boolean) => void; templates: Template[]; savingStatusLabel?: string; isDisabled?: boolean; } export declare const VideoSignatureForm: React.FC; export {};