import type { Crystal } from '../structure'; import type { MoyoCell, MoyoDataset } from '@spglib/moyo-wasm'; export type CellType = `original` | `conventional` | `primitive`; export declare function moyo_cell_to_structure(cell: MoyoCell, // The MoyoCell from symmetry analysis (std_cell or prim_std_cell) original_structure: Crystal): Crystal; export declare function get_conventional_cell(original_structure: Crystal, // The original input structure sym_data: MoyoDataset): Crystal; export declare function get_primitive_cell(original_structure: Crystal, // The original input structure sym_data: MoyoDataset): Crystal; export declare function transform_cell(structure: Crystal, // The original structure cell_type: CellType, // The desired cell type ('original', 'conventional', or 'primitive') sym_data: MoyoDataset | null): Crystal;