import { Form } from '../@Types'; import { FormStep, Mapper } from '../@Types/FormStep'; import { SiteState, ValuesStore } from '../States/SiteSlice'; import { CustomStep } from '../FormSteps/CustomStep'; import { MapperElement } from '../@Types/MapperElement'; import { MapperValue } from '../FormSteps/MapperStep/MaterialMapperStep/MaterialMapperStep'; import { CountryCode } from 'libphonenumber-js/max'; export declare const calcValuesStore: (orgInfo: { idOrganization?: string; countryCode?: CountryCode; }, form: Readonly
, originalValues?: Record, postview?: boolean, customSteps?: Record) => Promise; export declare const addMapperStep: (step: Mapper, customSteps: Record, path?: string) => { element: MapperElement; /** Record of all the new mapper values created */ mappers: Record>; /** Record of all the new steps created */ steps: Record; }; export declare const mapOriginalValue: (orgInfo: { idOrganization?: string; countryCode?: CountryCode; }, step: FormStep, value: any, values: ValuesStore, form?: Readonly, path?: string) => Promise; export declare const calcInitialSections: (form: Form) => Pick;