import { Textarea } from '@skbkontur/react-ui'; import { Token, ViewMode } from '../types'; export declare const textareaTokensRegExp: RegExp; export declare const getTextareaTokens: (value: string) => Token[]; export declare const getCursorCoordinates: (textArea: HTMLTextAreaElement, id: string) => { x: number; y: number; }; export declare const useListenTextareaScroll: (setMention: (value: undefined) => void, textarea?: Textarea | null) => void; export declare const useFullscreenHorizontalPadding: (fullscreen: boolean, viewMode: ViewMode, textareaWidth?: number) => number | undefined; export declare const getPastedHtml: (html: string, event: ClipboardEvent, textArea: HTMLTextAreaElement) => void;