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<QRType, FormFieldProps[]>;
export declare const qrTypeInfo: Record<QRType, {
    icon: string;
    description: string;
}>;
