import { ITextSelectionRange } from '@picsart/miniapp-sdk-types'; import { IGeneralContext, ITextSelectionChangeCallback, ITextSelectionChangeOptions } from '../../types'; declare const onTextSelectionChange: (callback: ITextSelectionChangeCallback, options?: ITextSelectionChangeOptions) => () => void; declare const detectTextSelectionChanges: (context: IGeneralContext, nextSelection?: ITextSelectionRange) => boolean; declare const runTextSelectionChangeHandlers: (context: IGeneralContext) => void; export { onTextSelectionChange, detectTextSelectionChanges, runTextSelectionChangeHandlers };