import React from 'react'; export interface TemplateInputProps { value: string; onChange?: (value: string) => void; label?: string; options?: { label: string; type: string; }[]; } export declare const TemplateInput: React.FC;