import type { View } from "@perspective-dev/client"; import type { DatagridPluginElement } from "../types.js"; interface DatagridPluginWithActivate extends DatagridPluginElement { activate(view: View): Promise; } export declare function draw(this: DatagridPluginWithActivate, view: View): Promise; export {};