declare const clean: (obj: any) => any;
declare const validateAndInvokeCallback: (callback: Function | undefined, data: any) => void;
declare const isEmptyObject: (obj: Object) => boolean;
declare const generateRandomHexWithId: (embedId: string) => string;
export { clean, validateAndInvokeCallback, isEmptyObject, generateRandomHexWithId, };
