import { HTMLSelection, Settings, Type } from "../types"; declare function xyScatter(container: HTMLSelection, settings: Settings): void; declare namespace xyScatter { var plugin: { name: string; category: string; max_cells: number; max_columns: number; render_warning: boolean; initial: { type: string; count: number; names: string[]; }; selectMode: string; }; var can_render_column_styles: (type: Type, group?: string) => boolean; var column_style_controls: (type: Type, group?: string) => { symbols: { keys: string; values: string[]; }; }; } export default xyScatter;