import { DecoderState } from './types';
/**
 * Converts client state value to a string, which could be useful for debugging or metrics.
 * @param state - the state of the client
 * @public
 */
export declare function stateToString(state: DecoderState): string;
