/** * checks juggling if any of the parameters is null or undefined * @param inputs the input parameters */ export declare const checkAllFilled: (...inputs: any[]) => boolean; export declare const arrayMove: (arr: any, oldIdx: number, newIdx: number) => any; /** * use this function for cases where the error source can be resolved by a * technical user by changing code. Handle other errors in the frontend * * @param userMessage a human readable Message to tell a (technical) user * @param dynValue a dynamic value, if any */ export declare const handleTechnicalKnownIssue: (userMessage: string, dynValue?: string) => void; export interface ClassNameProp { className?: string; } /** * * @param localValues */ export declare function cssClassNamePropFromLocalValues(localValues: Map): ClassNameProp;