import { InputFieldProps } from '../../types/InputProps'; import { default as React } from 'react'; export declare const initFormFieldsForObjectValues: (name: string, fields: InputFieldProps[] | undefined) => { name: string; id?: string; show?: boolean; type: "text" | "radio" | "email" | "password" | "select" | "select-with-chips" | "checkbox" | "datepicker" | "date-range-picker" | "custom" | "multi-checkbox" | "multi-check-ac" | "toggle" | "switch" | "autocomplete" | "file" | "image" | "multi-select" | "textarea" | "phone" | "ssn"; label: string; onBlur?: (event: React.FocusEvent) => void; autoFocus?: boolean; validator?: any; validations?: import('../..').Validation[]; typeValue?: "boolean" | "number" | "array" | "object" | "string" | "date"; control?: any; component?: any; disabled?: boolean; info?: string; hint?: string; options?: import('../..').Opt[]; multiple?: boolean; value: any; meta?: any; dependency?: import('../..').Dependency; selectKeys?: import('../..').SelectKeys; fieldCol?: number; align?: "left" | "right"; fields?: InputFieldProps[]; }[]; declare const FormDateRangePicker: (props: InputFieldProps) => import("react/jsx-runtime").JSX.Element; export default FormDateRangePicker;