import type { SchemaMetadata } from './types'; /** * Generate a plural name from a type name following OGM conventions. * Uses the `pluralize` npm package for correct English pluralization * (handles uncountable words like "equipment", irregular plurals, etc.) */ export declare function pluralize(name: string): string; /** * Parse a GraphQL schema string into SchemaMetadata. */ export declare function parseSchema(schemaSource: string): SchemaMetadata; //# sourceMappingURL=parser.d.ts.map