/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { CrosshairTooltipProps } from './Crosshair';
/**
 * @hidden
 */
export interface Tooltips {
    [key: string]: CrosshairTooltipProps;
}
/**
 * @hidden
 */
export interface CrosshairContainerProps {
    options: any;
}
/**
 * @hidden
 */
declare const CrosshairContainer: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
    optionsState: ObjectConstructor;
}>, {}, {}, {
    tooltips(): Tooltips;
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
    optionsState: ObjectConstructor;
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export { CrosshairContainer };
