import type { PerseusPlotterWidgetOptions } from "../../data-schema"; /** * For details on the individual options, see the * PerseusPlotterWidgetOptions type */ export type PlotterPublicWidgetOptions = Omit; /** * Given a PerseusPlotterWidgetOptions object, return a new object with only * the public options that should be exposed to the client. */ export declare function getPlotterPublicWidgetOptions(options: PerseusPlotterWidgetOptions): PlotterPublicWidgetOptions;