/** * Copyright (c) Microsoft. All rights reserved. */ import * as React from 'react'; import { LabelerA11yStore } from '../stores/LabelerA11yStore'; import { LabelerAnnotationsStore } from '../stores/LabelerAnnotationsStore'; import { LabelerSelectionStore } from '../stores/LabelerSelectionStore'; import { LineStore } from '../stores/LineStore'; import { ITokenStore } from '../types/labelerTypes'; export declare const useInitializeLayoutController: ({ rootRef, a11yStore, lineStores, selectionStore, annotationStore }: { lineStores: LineStore[]; a11yStore: LabelerA11yStore; selectionStore: LabelerSelectionStore; annotationStore: LabelerAnnotationsStore; rootRef: React.MutableRefObject; }) => void;