import { JsonMapperMethods } from "../interfaces/JsonMapperMethods.js";
/**
 * Mapper for the `Symbol` type.
 *
 * @jsonmapper
 * @component
 */
export declare class SymbolMapper implements JsonMapperMethods {
    deserialize(data: string): symbol;
    serialize(object: Symbol): any;
}
