import type { Vec3 } from './math'; import type { HTMLInputAttributes } from 'svelte/elements'; type $$ComponentProps = { value?: Vec3; label?: string; } & Omit; declare const MillerIndexInput: import("svelte").Component<$$ComponentProps, {}, "value">; type MillerIndexInput = ReturnType; export default MillerIndexInput;