import type { PerseusGrapherWidgetOptions, PerseusInteractiveGraphWidgetOptions } from "../../data-schema"; import type { PerseusGrapherUserInput, PerseusInteractiveGraphUserInput } from "../../validation.types"; export declare function convertGrapherOptionsToInteractiveGraph(grapherOptions: PerseusGrapherWidgetOptions): PerseusInteractiveGraphWidgetOptions | null; export declare function convertGrapherUserInputToInteractiveGraph(grapherUserInput: PerseusGrapherUserInput): PerseusInteractiveGraphUserInput; export declare function convertInteractiveGraphUserInputToGrapher(interactiveGraphUserInput: PerseusInteractiveGraphUserInput): PerseusGrapherUserInput;