1import { FieldConfigSource } from '@grafana/data';
2
3export interface VizTypeChangeDetails {
4  pluginId: string;
5  options?: any;
6  fieldConfig?: FieldConfigSource;
7  withModKey?: boolean;
8}
9