import type { CellType } from '../symmetry'; import type { MoyoDataset } from '@spglib/moyo-wasm'; type $$ComponentProps = { supercell_scaling: string; cell_type?: CellType; sym_data?: MoyoDataset | null; loading?: boolean; direction?: `up` | `down`; align?: `left` | `right`; suppress_hover?: boolean; }; declare const CellSelect: import("svelte").Component<$$ComponentProps, {}, "supercell_scaling" | "cell_type" | "loading">; type CellSelect = ReturnType; export default CellSelect;