/**
 * Serialize arbitrary data to a string that can be sent over the wire to the client.
 */
interface SerializerFunction {
    (data: unknown): string;
}
declare const serialize: SerializerFunction;
export type { SerializerFunction };
export { serialize };
