import { type LayoutInterface } from './layouts/layoutInterface.js';
export interface DatabaseStructure {
    layouts: Record<string, LayoutInterface>;
}
