import React from 'react'; import type { ToolbarGroup } from '../toolbar.types'; import type { Translator } from '@eternalheart/file-preview-core'; export interface CadRendererHandle { resetView: () => void; toggleWireframe: () => void; toggleGrid: () => void; toggleAxes: () => void; } export interface CadToolbarContext { cadRef: React.RefObject; wireframe: boolean; showGrid: boolean; showAxes: boolean; t: Translator; } export declare function getCadToolbarGroups(ctx: CadToolbarContext): ToolbarGroup[]; //# sourceMappingURL=toolbar.d.ts.map