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