import { type SelectionRange } from '.';
export declare function setSelectionPerMouseDown({ document, target, clickCount, node, offset, }: {
    document: Document;
    target: Element;
    clickCount: number;
    node?: Node;
    offset?: number;
}): Range | SelectionRange | undefined;
