import type { JSONSchema7Definition } from 'json-schema'; import type { OptionsSchema } from '../types'; /** * Helper function to extend an options schema with dynamic options DSL * @param optionsSchema a visualization's options schema * @returns an updated options schema that additionally allows strings starting with > for each option */ export declare const enhanceOptionsSchemaWithDynamicOptions: (optionsSchema: OptionsSchema | JSONSchema7Definition) => OptionsSchema;