import React from 'react'; import { ITextLabel } from '../../models'; interface IProps { onClickItem?: () => void; onSelection?: (label: { index: number; word: string; }) => void; labels?: ITextLabel[]; } export declare const SelectionHandler: (props: React.PropsWithChildren) => JSX.Element; export {};