import React from "react";
import { TextReducerProps } from "./../../components/TextReducer/TextReducer";
export interface ReduceToTextFuncType {
    (
    /**
     *  Component or text to reduce HTML markup content to plain text.
     */
    input: React.ReactNode | React.ReactNode[] | string, options?: Pick<TextReducerProps, "maxNodes" | "maxLength" | "decodeHtmlEntities" | "decodeHtmlEntitiesOptions">): string;
}
export declare const reduceToText: ReduceToTextFuncType;
