import type { PaneProps, PaneToggleProps } from '../overlays'; import type { AnyStructure } from './'; import type { Camera, Scene } from 'three/webgpu'; type $$ComponentProps = { export_pane_open?: boolean; structure?: AnyStructure; wrapper?: HTMLDivElement; scene?: Scene; camera?: Camera; image_canvas?: HTMLCanvasElement; image_filename?: string; enable_3d_export?: boolean; png_dpi?: number; pane_props?: PaneProps; toggle_props?: PaneToggleProps; }; declare const StructureExportPane: import("svelte").Component<$$ComponentProps, {}, "export_pane_open" | "png_dpi">; type StructureExportPane = ReturnType; export default StructureExportPane;