export interface GriddoConfig { autotypesImport?: string; typesImport?: "autotypes-file" | "react-file"; elements: { [key: string]: { kind: "module" | "component"; uiDir: string; schemaDir: string; tpl?: string; }; }; contentTypes: { [key: string]: { type: string; schemas: { path: string; }; tpl?: string; }; }; } export declare const loadConfig: () => GriddoConfig; //# sourceMappingURL=config.d.ts.map