export type Attribute = { type: `@${string}`; args: Array; }; export type Field = { field: string; type: string; attributes: Array; }; export type Model = { name: string; fields: Array; }; export declare function parseModels(prismaSchema: string): Array; export declare function parseFields(body: string): Array; //# sourceMappingURL=schemaParser.d.ts.map