import { type ApiSchema } from "./schemaParser.js";
declare const apiTypes: readonly ["list", "object"];
export type ApiDefinition = {
    endpointName: string;
    apiSchema: ApiSchema;
    apiType: (typeof apiTypes)[number];
};
export declare function parseSchemaFiles(dirPath: string): ApiDefinition[];
export {};
