/** * Parses internal schema ids (/components/schema/Foo) to the derive the expected schema output path * this library saves generated JSON schemas to (...outputPath/components.schema/Foo) */ export declare function parseId(id: string): { schemaRelativeDirName: string; schemaName: string; };