/** * @description Contains functions to select the text decoration to be used with text. * Learn more: {@link https://cloudinary.com/documentation/layers#text_layer_options|Adding text overlays to images} * Learn more: {@link https://cloudinary.com/documentation/video_layers#text_layer_options|Adding text overlays to videos} * @memberOf Qualifiers * @namespace TextDecoration * @see To be used with {@link Qualifiers.TextStyle|Text Style} */ /** * @summary qualifier * @memberOf Qualifiers.TextDecoration */ declare function normal(): string; /** * @summary qualifier * @memberOf Qualifiers.TextDecoration */ declare function underline(): string; /** * @summary qualifier * @memberOf Qualifiers.TextDecoration */ declare function strikethrough(): string; declare const TextDecoration: { normal: typeof normal; underline: typeof underline; strikethrough: typeof strikethrough; }; export { TextDecoration, normal, underline, strikethrough };