import { Key } from 'react'; /** * A Selection is a special Set containing Keys, which also has an anchor * and current selected key for use when range selecting. */ export declare class Selection extends Set { anchorKey: Key; currentKey: Key; constructor(keys?: Iterable | Selection, anchorKey?: Key, currentKey?: Key); }