import { AppSchema } from '../models/appSchema.model'; /** * Read and parse the kottster-app.json file in the current working directory. * @returns The parsed AppSchema object * @throws If the file does not exist or is not valid JSON */ export declare function readAppSchema(projectDir: string, isDevelopment: boolean): AppSchema;