export declare const FUNCTION_PREFIX = "_function:";
export declare const ELEMENT_PREFIX = "_element:";
/**
 * We can't send messages with DOM nodes or functions because they will result in a
 * data clone error. sanitizeMessage recursively clones an object and replaces the
 * DOM nodes and functions with a string representation.
 **/
export declare const sanitizeMessage: (message: any) => any;
