/** * Copyright (c) Microsoft. All rights reserved. */ import * as React from 'react'; import { LabelerStore } from '../stores/LabelerStore'; import { DefaultTheme } from 'styled-components'; type LabelerMockProviderProps = { theme?: DefaultTheme; labelerStore?: LabelerStore; }; export declare const LabelerMockProvider: (props: React.PropsWithChildren) => JSX.Element; export {};