import { Extension } from '../../core/Extension.js'; /** * Configuration options for TextTransform * @typedef {Object} TextTransformOptions * @category Options * @property {string[]} [types=['textStyle']] - Mark types to apply text transform to */ /** * Attributes for text transform * @typedef {Object} TextTransformAttributes * @category Attributes * @property {string} [textTransform] - Text transform value (uppercase, lowercase, capitalize, none) */ /** * @module TextTransform * @sidebarTitle Text Transform * @snippetPath /snippets/extensions/text-transform.mdx */ export const TextTransform: Extension<{ types: string[]; }, Record>; /** * Configuration options for TextTransform */ export type TextTransformOptions = Object; /** * Attributes for text transform */ export type TextTransformAttributes = Object; //# sourceMappingURL=text-transform.d.ts.map