import type { AnyStructure, LatticeType, Site } from '../structure'; export interface StructureIdPayload { xyz: Float64Array; lattice?: LatticeType; species?: Site[`species`][]; } export declare const to_structure_id_payload: (structure: AnyStructure, with_species?: boolean) => StructureIdPayload; export declare const structure_from_payload: ({ xyz, lattice, species, }: StructureIdPayload) => AnyStructure;