import type { Vec3 } from '../math'; import * as math from '../math'; type $$ComponentProps = { matrix?: math.Matrix3x3; cell_edge_color?: string; cell_surface_color?: string; cell_edge_width?: number; cell_edge_opacity?: number; cell_surface_opacity?: number; show_cell_vectors?: boolean; vector_colors?: readonly [string, string, string]; vector_origin?: Vec3; float_fmt?: string; }; declare const Lattice: import("svelte").Component<$$ComponentProps, {}, "">; type Lattice = ReturnType; export default Lattice;