import type { PaneProps, PaneToggleProps } from '../overlays'; import type { ExportSection } from './types'; import { type Snippet } from 'svelte'; import type { HTMLAttributes } from 'svelte/elements'; type $$ComponentProps = HTMLAttributes & { export_pane_open?: boolean; sections?: ExportSection[]; png_dpi?: number; dpi_range?: readonly [number, number]; icon_style?: string; toggle_props?: PaneToggleProps; pane_props?: PaneProps; children?: Snippet; }; declare const ExportPane: import("svelte").Component<$$ComponentProps, {}, "export_pane_open" | "png_dpi">; type ExportPane = ReturnType; export default ExportPane;