import React from 'react'; export declare type OptionType = { name: string; }; export declare type AttributeValueType = string | number | boolean | string[]; export declare type KeyValueData = { name: string; placeholder?: string; value?: string; }; export declare type AttributeSchema = { name: string; type: 'input' | 'select' | 'radio' | 'switch' | 'checkbox' | 'options' | 'keyValueData'; label: string; value?: AttributeValueType; options?: OptionType[]; keyValueData?: KeyValueData[]; }; export declare type ValidationType = 'string' | 'number' | 'array' | 'boolean' | 'object'; export declare type Validation = { type: string; params: any[]; }; export declare type FormElement = { name: string; label: string; description?: string; icon: React.ReactElement; render: React.FC; attributes: AttributeSchema[]; validators?: Validators[]; validationType: ValidationType; isReadOnly?: boolean; isCustomRegistered?: boolean; }; export declare type Validators = 'required' | 'min' | 'max' | 'length' | 'matches' | 'email' | 'url' | 'moreThan' | 'lessThan' | 'positive' | 'negative' | 'integer'; export declare const validatorsMapper: Record>;