import { QRType } from '../definitions'; export interface FormFieldProps { label: string; name: string; type?: string; placeholder?: string; required?: boolean; pattern?: string; maxLength?: number; min?: string; max?: string; options?: Array<{ value: string; label: string; }>; helper?: string; } export declare const qrFormFields: Record; export declare const qrTypeInfo: Record;