import React from 'react';
import type { EditorAnalyticsContextProps } from './EditorAnalyticsContext';
type ToolbarViewedEventProps = {
    display: string | null;
    url?: string;
};
/**
 * Provides analytics context and card context
 */
export declare const ToolbarViewedEvent: ({ url, display, editorView, }: ToolbarViewedEventProps & Omit<EditorAnalyticsContextProps, "children">) => React.JSX.Element;
export {};
