import { ComponentType, PropsWithoutRef, Ref, RefAttributes } from 'react'; import { FacetedData, FacetedPlotRef, PlotRef } from '../types/plots'; import { PlotProps } from './PlotlyPlot'; declare type ComponentWithPlotRef

= ComponentType & RefAttributes>; export interface FacetedPlotProps> { data?: FacetedData; component: ComponentWithPlotRef

; componentProps: P; /** Provide modalComponentProps to activate click-to-expand * These are the props the expanded plot inside the modal will receive */ modalComponentProps?: P; checkedLegendItems?: string[]; } export interface FacetedPlotPropsWithRef> extends FacetedPlotProps { facetedPlotRef?: Ref; } export default function FacetedPlot>(props: FacetedPlotPropsWithRef): JSX.Element; export {}; //# sourceMappingURL=FacetedPlot.d.ts.map