import React from "react"; import { ActionManager } from "../actions/manager"; import { ExcalidrawElement, PointerType } from "../element/types"; import { AppState, Zoom } from "../types"; export declare const SelectedShapeActions: ({ appState, elements, renderAction, activeTool, }: { appState: AppState; elements: readonly ExcalidrawElement[]; renderAction: ActionManager["renderAction"]; activeTool: AppState["activeTool"]["type"]; }) => JSX.Element; export declare const ShapesSwitcher: ({ canvas, activeTool, setAppState, onImageAction, appState, }: { canvas: HTMLCanvasElement | null; activeTool: AppState["activeTool"]; setAppState: React.Component["setState"]; onImageAction: (data: { pointerType: PointerType | null; }) => void; appState: AppState; }) => JSX.Element; export declare const ZoomActions: ({ renderAction, zoom, }: { renderAction: ActionManager["renderAction"]; zoom: Zoom; }) => JSX.Element;