import React from 'react'; export interface InputDialogProps { title: string; label: string; helperText?: string; defaultValue?: string; onSubmit: (value: string) => void; onCancel: () => void; validate?: (value: string) => boolean | string; allowedChars?: RegExp; preprocessInput?: (value: string) => string; } export declare const InputDialog: React.FC;