import type { PreventTextSelectionOverflowConfig } from './types.js';
export declare const usePreventTextSelectionOverflow: <Node_1 extends HTMLElement>(node: Node_1, config?: PreventTextSelectionOverflowConfig) => {
    destroy(): void;
    update: (config: PreventTextSelectionOverflowConfig) => void;
};
