/** * Copyright (c) Microsoft. All rights reserved. */ import * as React from 'react'; import { LabelerConfigStore } from './stores/LabelerConfigStore'; import { LabelerSelectionStore } from './stores/LabelerSelectionStore'; import { LabelerProps } from './types/labelerProps'; import { ITokenStore } from './types/labelerTypes'; export type LabelerRef = { configStore: LabelerConfigStore; selectionStore: LabelerSelectionStore; }; export declare const Labeler: React.ForwardRefExoticComponent & React.RefAttributes>;