import { Param } from '../types/paramTypes'; /** * This function is used to get the values inside the state converted from string values into the correct type. */ export declare function getStateValues(params: Record, state: unknown): Record; /** * This function is used to set the values inside the state to have string values, stored in history. */ export declare const setStateValues: (params: Record, state: unknown) => Record;