/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ export interface IOptions { fallbackToOriginal: boolean; preserveOptionalNodeWrappingCharacters: boolean; } declare function serialize(value: any, entityValuesMap: Map, userOptions?: Partial): string; declare const _default: { serialize: typeof serialize; }; export default _default;