import type { Structure } from './types'; export declare function registerStructure(type: string, structure: Structure): void; export declare function getStructure(type: string): Structure | undefined; export declare function getStructures(): string[];