import { ReactElement, ReactNode } from 'react'; export interface SelectionProps { children?: ReactNode; filter?: (anchor: Node) => boolean; } export declare function Selection({ children, filter }: SelectionProps): ReactElement;