export declare type TextLengthChangeHandler = (length: number) => void; export declare type Props = { /** * Callback that is called when text length changes */ onTextLengthChange: TextLengthChangeHandler; }; declare const TextLengthPlugin: { ({ onTextLengthChange }: Props): null; displayName: string; }; export default TextLengthPlugin; //# sourceMappingURL=TextLengthPlugin.d.ts.map