export declare const isObjEmpty: (obj: any) => boolean; export declare const addData: ({ key, value, ref, targetType, checked, initialize, }: { ref: Record; value: any; targetType: string; key: string; checked?: boolean; initialize?: boolean; }) => void; export declare const addObjectData: >(refObject: T, name: string, { value, targetType, checked, initialize, }: { value: any; targetType: string; checked?: boolean; initialize?: boolean; }) => T; export declare const createSingleKeyObj: ({ source, target, prefix, }: { target: Record; source: Record; prefix?: string; }) => Record; export declare const getObjectData: (name: String, refObject: Record) => any; export declare const getErrorMsg: (defaultMessage: string, msg?: string) => string;