import type { ExcalidrawElement } from "@excalidraw/element/types"; import type { AppClassProperties, AppState } from "../types"; export declare const actionFlipHorizontal: { name: "flipHorizontal"; label: string; icon: import("react/jsx-runtime").JSX.Element; trackEvent: { category: "element"; }; perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly, _: any, app: AppClassProperties) => { elements: ExcalidrawElement[]; appState: Readonly; captureUpdate: "IMMEDIATELY"; }; keyTest: (event: KeyboardEvent | import("react").KeyboardEvent) => boolean; } & { keyTest?: ((event: KeyboardEvent | import("react").KeyboardEvent) => boolean) | undefined; }; export declare const actionFlipVertical: { name: "flipVertical"; label: string; icon: import("react/jsx-runtime").JSX.Element; trackEvent: { category: "element"; }; perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly, _: any, app: AppClassProperties) => { elements: ExcalidrawElement[]; appState: Readonly; captureUpdate: "IMMEDIATELY"; }; keyTest: (event: KeyboardEvent | import("react").KeyboardEvent) => boolean; } & { keyTest?: ((event: KeyboardEvent | import("react").KeyboardEvent) => boolean) | undefined; };