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