import { ScatterPlot } from '../plot'; import type { RadiationType } from '../scattering'; import type { Crystal, Pbc } from '../structure'; import type { ComponentProps } from 'svelte'; type $$ComponentProps = { structures?: Crystal | Crystal[] | Record; quantity?: `g_r` | `reduced_g_r`; radiation?: RadiationType; cutoff?: number; n_bins?: number; show_partials?: boolean; show_controls?: boolean; pbc?: Pbc; error_msg?: string; } & ComponentProps; declare const PdfPlot: import("svelte").Component<$$ComponentProps, {}, "show_controls" | "controls_open" | "cutoff" | "error_msg" | "n_bins" | "radiation" | "quantity" | "show_partials">; type PdfPlot = ReturnType; export default PdfPlot;