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