/** * Cleans the input values to remove blank strings, null and undefined, returns a new Object with only valid properties * @param inConfig Input config object, where key is fieldname, and value is entered value */ export declare const cleanConfigInput: (inConfig: any) => { [index: string]: any; }; /** * Return a new object, where any Array values are converted to comma-separated strings * @param inConfig input configuration values */ export declare const convertArrayInput: (inConfig: any) => { [index: string]: string; };