import type { PaneProps, PaneToggleProps } from '../overlays'; import type { AnyStructure } from './'; import type { Camera, Scene } from 'three'; type $$ComponentProps = { export_pane_open?: boolean; structure?: AnyStructure; wrapper?: HTMLDivElement; scene?: Scene; camera?: Camera; 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;